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 9d87ca0 commit 50c2523Copy full SHA for 50c2523
ext/SciMLBaseChainRulesCoreExt.jl
@@ -111,15 +111,15 @@ end
111
112
function ChainRulesCore.rrule(
113
::Type{
114
- <:ODESolution{uType, tType, isinplace, P, NP, F, G, K,
+ <:RODESolution{uType, tType, isinplace, P, NP, F, G, K,
115
ND
116
}}, u,
117
args...) where {uType, tType, isinplace, P, NP, F, G, K, ND}
118
- function SDESolutionAdjoint(ȳ)
+ function RODESolutionAdjoint(ȳ)
119
(NoTangent(), ȳ, ntuple(_ -> NoTangent(), length(args))...)
120
end
121
122
- SDESolution{uType, tType, isinplace, P, NP, F, G, K, ND}(u, args...), SDESolutionAdjoint
+ RODESolution{uType, tType, isinplace, P, NP, F, G, K, ND}(u, args...), RODESolutionAdjoint
123
124
125
function ChainRulesCore.rrule(::SciMLBase.EnsembleSolution, sim, time, converged)
0 commit comments