blob: ad8b2d39e4597ad97c752238a2ef4a4b9457d112 [file] [log] [blame] [edit]
// RUN: %eopt --enzyme --verify-diagnostics --allow-unregistered-dialect %s
module {
func.func @unsupported(%x : f64) -> f64 {
// We cannot differentiate active (from operands+results) ops from unknown dialects.
// expected-error @below {{could not compute the adjoint for this operation}}
%r = "test.foo"(%x) : (f64) -> f64
return %r : f64
}
func.func @diff(%x : f64, %dx : f64) -> f64 {
%r = enzyme.fwddiff @unsupported(%x, %dx) { activity=[#enzyme<activity enzyme_dup>], ret_activity=[#enzyme<activity enzyme_dupnoneed>] } : (f64, f64) -> (f64)
return %r : f64
}
}