-
Notifications
You must be signed in to change notification settings - Fork 122
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 verifying Enzyme Gradients with Clad Gradients
This commit generates code that will verify the results of Enzyme Gradients with Clad Gradients. For example, if previously the following code was generated for differentiating with enzyme for a function: ```cpp void f1_grad_enzyme(double arr[2], clad::array_ref<double> _d_arr) { double *d_arr = _d_arr.ptr(); __enzyme_autodiff_f1(f1, arr, d_arr); } ``` The above code will be appended with checks to verify the calculated gradients. Thus the newly generated code would be: ```cpp void f1_grad_enzyme(double arr[2], clad::array_ref<double> _d_arr) { double *d_arr = _d_arr.ptr(); __enzyme_autodiff_f1(f1, arr, d_arr); double cladResult1[2]; f1_grad(arr, cladResult1); EssentiallyEqualArrays(cladResult1, _d_arr.ptr(), 2UL); } ``` `EssentiallyEqualArrays` and `EssentiallyEqual` are functions defined in Differentiator.h Only functions with primitive type and ConstantArray type parameters can be verified in this manner. To trigger this verification one must append the following flag to clang while compiling the function to be generated: `-Xclang -plugin-arg-clad -Xclang -fcheck-enzyme-with-clad`
- Loading branch information
Showing
12 changed files
with
199 additions
and
8 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
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
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
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,51 @@ | ||
// RUN: %cladclang %s -I%S/../../include -Xclang -plugin-arg-clad -Xclang -fcheck-enzyme-with-clad -oReverseModeWithCladCheck.out | FileCheck %s | ||
// RUN: ./ReverseModeWithCladCheck.out | FileCheck -check-prefix=CHECK-EXEC %s | ||
// CHECK-NOT: {{.*error|warning|note:.*}} | ||
// REQUIRES: Enzyme | ||
// XFAIL:* | ||
|
||
#include "clad/Differentiator/Differentiator.h" | ||
|
||
double f1(double arr[2]) { return arr[0] * arr[1]; } | ||
|
||
// CHECK: void f1_grad_enzyme(double arr[2], clad::array_ref<double> _d_arr) { | ||
// CHECK-NEXT: double *d_arr = _d_arr.ptr(); | ||
// CHECK-NEXT: __enzyme_autodiff_f1(f1, arr, d_arr); | ||
// CHECK-NEXT: double cladResult1[2]; | ||
// CHECK-NEXT: f1_grad(arr, cladResult1); | ||
// CHECK-NEXT: EssentiallyEqualArrays(cladResult1, _d_arr.ptr(), 2UL); | ||
// CHECK-NEXT:} | ||
|
||
double f2(double x, double y, double z){ | ||
return x * y * z; | ||
} | ||
|
||
// CHECK: void f2_grad_enzyme(double x, double y, double z, clad::array_ref<double> _d_x, clad::array_ref<double> _d_y, clad::array_ref<double> _d_z) { | ||
// CHECK-NEXT: clad::EnzymeGradient<3> grad = __enzyme_autodiff_f2(f2, x, y, z); | ||
// CHECK-NEXT: * _d_x = grad.d_arr[0U]; | ||
// CHECK-NEXT: * _d_y = grad.d_arr[1U]; | ||
// CHECK-NEXT: * _d_z = grad.d_arr[2U]; | ||
// CHECK-NEXT: double cladResult1; | ||
// CHECK-NEXT: double cladResult2; | ||
// CHECK-NEXT: double cladResult3; | ||
// CHECK-NEXT: f2_grad(x, y, z, &cladResult1, &cladResult2, &cladResult3); | ||
// CHECK-NEXT: EssentiallyEqual(cladResult1, * _d_x); | ||
// CHECK-NEXT: EssentiallyEqual(cladResult2, * _d_y); | ||
// CHECK-NEXT: EssentiallyEqual(cladResult3, * _d_z); | ||
// CHECK-NEXT:} | ||
|
||
int main() { | ||
auto f1_grad = clad::gradient<clad::opts::use_enzyme>(f1); | ||
double f1_v[2] = {3, 4}; | ||
double f1_g[2] = {0}; | ||
f1_grad.execute(f1_v, f1_g); | ||
printf("d_x = %.2f, d_y = %.2f\n", f1_g[0], f1_g[1]); | ||
// CHECK-EXEC: d_x = 4.00, d_y = 3.00 | ||
|
||
auto f2_grad=clad::gradient<clad::opts::use_enzyme>(f2); | ||
double f2_res[3]; | ||
double f2_x=3,f2_y=4,f2_z=5; | ||
f2_grad.execute(f2_x,f2_y,f2_z,&f2_res[0],&f2_res[1],&f2_res[2]); | ||
printf("d_x = %.2f, d_y = %.2f, d_z = %.2f\n", f2_res[0], f2_res[1], f2_res[2]); | ||
//CHECK-EXEC: d_x = 20.00, d_y = 15.00, d_z = 12.00 | ||
} |
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
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