Skip to content

Commit 1584bb2

Browse files
Fix master tests (v1.10 and v1.11)
1 parent 60b4cd3 commit 1584bb2

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/ensemblegpuarray/problem_generation.jl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,12 @@ function generate_problem(prob::SciMLBase.AbstractODEProblem,
5858
_tgrad = nothing
5959
end
6060

61+
6162
f_func = ODEFunction(_f, Wfact = _Wfact!,
6263
Wfact_t = _Wfact!_t,
6364
#colorvec=colorvec,
6465
jac_prototype = jac_prototype,
66+
sparsity = nothing,
6567
tgrad = _tgrad)
6668
prob = ODEProblem(f_func, u0, prob.tspan, p;
6769
prob.kwargs...)
@@ -138,6 +140,7 @@ function generate_problem(prob::SDEProblem, u0, p, jac_prototype, colorvec)
138140
Wfact_t = _Wfact!_t,
139141
#colorvec=colorvec,
140142
jac_prototype = jac_prototype,
143+
sparsity = nothing,
141144
tgrad = _tgrad)
142145
prob = SDEProblem(f_func, _g, u0, prob.tspan, p;
143146
prob.kwargs...)

0 commit comments

Comments
 (0)