forked from vgvassilev/clad
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for simple lambda functions in forward mode
This commit provides support for the simplest lambda functions, that is, those with no captures in forward mode. The original lambda function is copied into the derivative, but the corresponding lambda class gets extended to also have a pushforward method for the call operator overload.
- Loading branch information
Showing
2 changed files
with
84 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
// RUN: %cladclang %s -I%S/../../include -oLambdas.out 2>&1 | %filecheck %s | ||
// RUN: ./Lambdas.out | %filecheck_exec %s | ||
// CHECK-NOT: {{.*error|warning|note:.*}} | ||
|
||
#include "clad/Differentiator/Differentiator.h" | ||
|
||
double fn0(double x) { | ||
auto _f = [](double _x) { | ||
return _x*_x; | ||
}; | ||
return _f(x) + 1; | ||
} | ||
|
||
double fn1(double x, double y) { | ||
auto _f = [](double _x, double _y) { | ||
return _x + _y; | ||
}; | ||
return _f(x*x, x+2) + y; | ||
} | ||
|
||
int main() { | ||
auto fn0_dx = clad::differentiate(fn0, 0); | ||
printf("Result is = %.2f\n", fn0_dx.execute(7)); // CHECK-EXEC: Result is = 14.00 | ||
printf("Result is = %.2f\n", fn0_dx.execute(-1)); // CHECK-EXEC: Result is = -2.00 | ||
|
||
auto fn1_dx = clad::differentiate(fn1, 0); | ||
printf("Result is = %.2f\n", fn1_dx.execute(7, 1)); // CHECK-EXEC: Result is = 15.00 | ||
printf("Result is = %.2f\n", fn1_dx.execute(-1, 1)); // CHECK-EXEC: Result is = -1.00 | ||
} |