We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Problem:
julia> SparseDiffTools.__test_backend_loaded(ADTypes.AutoForwardDiff()) ERROR: AutoForwardDiff{nothing, Nothing}(nothing) requires ForwardDiff.jl to be loaded. Please load it. Stacktrace: [1] error(s::String) @ Base ./error.jl:35 [2] __test_backend_loaded(ad::AutoForwardDiff{nothing, Nothing}) @ SparseDiffTools ~/.julia/packages/SparseDiffTools/zWIg7/src/highlevel/common.jl:347 [3] top-level scope @ REPL[41]:1 julia> SparseDiffTools.__test_backend_loaded(ADTypes.AutoReverseDiff()) ERROR: AutoReverseDiff(false) requires nothing.jl to be loaded. Please load it. Stacktrace: [1] error(s::String) @ Base ./error.jl:35 [2] __test_backend_loaded(ad::AutoReverseDiff) @ SparseDiffTools ~/.julia/packages/SparseDiffTools/zWIg7/src/highlevel/common.jl:347 [3] top-level scope @ REPL[42]:1
Solution: edit the following lines to add the ReverseDiff case
SparseDiffTools.jl/src/highlevel/common.jl
Lines 344 to 355 in d2f35b7
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Problem:
Solution: edit the following lines to add the ReverseDiff case
SparseDiffTools.jl/src/highlevel/common.jl
Lines 344 to 355 in d2f35b7
The text was updated successfully, but these errors were encountered: