You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is probably trivial to you but it does not work
backend=DI.AutoForwardDiff()
F(x) = x
prep=prepare_jacobian(F, AutoForwardDiff(), zeros(2))
DI.jacobian(F, backend, zeros(2)) # works
DI.jacobian(F, prep, backend, zeros(2)) # does not work
Hi,
This is probably trivial to you but it does not work