-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
43 additions
and
10 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,39 @@ | ||
; RUN: if [ %llvmver -lt 16 ]; then %opt < %s %loadEnzyme -enzyme -enzyme-preopt=false -mem2reg -simplifycfg -S | FileCheck %s; fi | ||
; RUN: %opt < %s %newLoadEnzyme -enzyme-preopt=false -passes="enzyme,function(mem2reg,%simplifycfg)" -S | FileCheck %s | ||
|
||
declare void @__enzyme_autodiff(...) | ||
|
||
declare void @llvm.memset.p0i8.i64(i8* nocapture writeonly, i8, i64, i1) | ||
|
||
declare void @g() | ||
|
||
define void @f(i8* %x) { | ||
call void @llvm.memset.p0i8.i64(i8* %x, i8 0, i64 16, i1 false) | ||
%xp = bitcast i8* %x to double* | ||
%flt = load double, double* %xp, align 8, !tbaa !7 | ||
%g = getelementptr inbounds double, double* %xp, i32 1 | ||
%int = load double, double* %g, align 8, !tbaa !4 | ||
call void @g() "enzyme_inactive" | ||
ret void | ||
} | ||
|
||
define void @df(double* %x, double* %xp) { | ||
tail call void (...) @__enzyme_autodiff(i8* bitcast (void (i8*)* @f to i8*), metadata !"enzyme_dup", double* %x, double* %xp) | ||
ret void | ||
} | ||
|
||
!4 = !{!"long", !5, i64 0} | ||
!7 = !{!"double", !5, i64 0} | ||
!5 = !{!"omnipotent char", !6, i64 0} | ||
!6 = !{!"Simple C++ TBAA"} | ||
|
||
; CHECK: define internal void @diffef(i8* %x, i8* %"x'") | ||
; CHECK-NEXT: invert: | ||
; CHECK-NEXT: call void @llvm.memset.p0i8.i64(i8* %x, i8 0, i64 16, i1 false) | ||
; CHECK-NEXT: %0 = getelementptr inbounds i8, i8* %"x'", i32 8 | ||
; CHECK-NEXT: call void @llvm.memset.p0i8.i64(i8* %0, i8 0, i64 8, i1 false) | ||
; The G here is used to partition the forward pass from the reverse pass | ||
; CHECK-NEXT: call void @g() | ||
; CHECK-NEXT: call void @llvm.memset.p0i8.i64(i8* %"x'", i8 0, i64 8, i1 false) | ||
; CHECK-NEXT: ret void | ||
; CHECK-NEXT: } |