We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f934635 commit a83cd29Copy full SHA for a83cd29
src/concrete_solve.jl
@@ -1792,7 +1792,7 @@ function DiffEqBase._concrete_solve_adjoint(
1792
end
1793
1794
1795
- dp = Zygote.accum(dp, (isempty(Δtunables) || isnothing(Δtunables)) ? nothing : Δtunables)
+ dp = Zygote.accum(dp, (isnothing(Δtunables) || isempty(Δtunables)) ? nothing : Δtunables)
1796
1797
if originator isa SciMLBase.TrackerOriginator ||
1798
originator isa SciMLBase.ReverseDiffOriginator
0 commit comments