1
Fork 0

remove outdated *First autodiff variants for higher-order ad

This commit is contained in:
Manuel Drehwald 2025-02-10 01:35:53 -05:00
parent 1221cff551
commit 061abbc369
3 changed files with 6 additions and 22 deletions

View file

@ -52,8 +52,6 @@ fn generate_enzyme_call<'ll>(
let mut ad_name: String = match attrs.mode {
DiffMode::Forward => "__enzyme_fwddiff",
DiffMode::Reverse => "__enzyme_autodiff",
DiffMode::ForwardFirst => "__enzyme_fwddiff",
DiffMode::ReverseFirst => "__enzyme_autodiff",
_ => panic!("logic bug in autodiff, unrecognized mode"),
}
.to_string();