Skip to content

Commit

Permalink
make all implicit methods GPU compatable
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas committed Apr 17, 2019
1 parent 87a97b6 commit 7308b33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nlsolve/utils.jl
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ DiffEqBase.@def iipnlsolve begin
W = WOperator(f, dt, true)
J = nothing # is J = W.J better?
else
J = fill(zero(uEltypeNoUnits),length(u),length(u)) # uEltype?
J = zero(u .* u')
W = similar(J)
end
end
Expand Down

0 comments on commit 7308b33

Please sign in to comment.