Skip to content

Commit 9ae11ac

Browse files
authored
Add Mihail Mihov to contributors list (#188)
1 parent e123214 commit 9ae11ac

File tree

4 files changed

+30
-0
lines changed

4 files changed

+30
-0
lines changed

_data/contributors.yml

+20
Original file line numberDiff line numberDiff line change
@@ -290,6 +290,26 @@
290290
proposal: /assets/docs/Thomas_Fransham_GSoC24_Proposal.pdf
291291
mentors: Vassil Vassilev, Saleem Abdulrasool
292292

293+
- name: Mihail Mihov
294+
photo: mihail-mihov.jpg
295+
info: "GSoC 2024 Contributor"
296+
297+
github: "https://github.com/mihailmihov"
298+
active: 1
299+
projects:
300+
- title: "Add support for consteval and constexpr functions in clad"
301+
status: Ongoing
302+
description: |
303+
In mathematics and computer algebra, automatic differentiation (AD) is a set of techniques to numerically evaluate the derivative of a function specified by a computer program. Automatic differentiation is an alternative technique to Symbolic differentiation and Numerical differentiation (the method of finite differences). Clad is based on Clang which provides the necessary facilities for code transformation. The AD library can differentiate non-trivial functions, to find a partial derivative for trivial cases and has good unit test coverage.
304+
305+
C++ provides the specifiers consteval and constexpr to allow compile time evaluation of functions. constexpr declares a possibility, i.e the function will be evaluated at compile time if possible, else at runtime; whereas consteval makes it mandatory, i.e every call to the function must produce a compile-time constant.
306+
307+
The aim of this project is to ensure that same semantics are followed by the generated derivative function, i.e if the primal function is evaluated at compile time (because of constexpr or consteval specifier), then the generated derivative code should also have the same specifier to be evaluatable at compile time.
308+
309+
This will enable clad to demonstrate the benefits of doing automatic differentiation directly on C++ frontend to utilize the benefits of clang’s infrastructure.
310+
proposal: /assets/docs/Mihail_Mihov_GSoC24_Proposal.pdf
311+
mentors: Vaibhav Thakkar, Petro Zaritskyi, Vassil Vassilev
312+
293313
- name: "This could be you!"
294314
photo: rock.jpg
295315
info: See <a href="/vacancies">openings</a> for more info

_pages/team/mihail-mihov.md

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
title: "Compiler Research - Team - Mihail Mihov"
3+
layout: gridlay
4+
excerpt: "Compiler Research: Team members"
5+
sitemap: false
6+
permalink: /team/MihailMihov
7+
8+
---
9+
10+
{% include team-profile.html %}
842 KB
Binary file not shown.

images/team/mihail-mihov.jpg

154 KB
Loading

0 commit comments

Comments
 (0)