-
Notifications
You must be signed in to change notification settings - Fork 45
multivalue autodiff #221
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
multivalue autodiff #221
Conversation
Codecov ReportPatch coverage has no change and project coverage change:
Additional details and impacted files@@ Coverage Diff @@
## master #221 +/- ##
=========================================
- Coverage 0.31% 0.31% -0.01%
=========================================
Files 14 14
Lines 940 944 +4
=========================================
Hits 3 3
- Misses 937 941 +4
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report in Codecov by Sentry. |
@ChrisRackauckas good to go |
ext/SparseDiffToolsZygote.jl
Outdated
@@ -115,8 +116,8 @@ function SparseDiffTools.auto_vecjac(f, x, v) | |||
return vec(back(reshape(v, size(vv)))[1]) | |||
end | |||
|
|||
function SparseDiffTools.ZygoteVecJac(args...; autodiff = true, kwargs...) | |||
VecJac(args...; autodiff = autodiff, kwargs...) | |||
function SparseDiffTools.ZygoteVecJac(args...; kwargs...) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this should just be renamed to VecJac, and AutoZygote is the Zygote version of it (but then we want to make Enzyme etc. versions soon.
close #215