Skip to content

Commit

Permalink
Update test/gpu/linear_exp.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas authored Nov 21, 2024
1 parent cf2fec9 commit 236e987
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/gpu/linear_exp.jl
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ prob_gpu = ODEProblem(A_gpu, u0_gpu, (0.0, 1.0))

sol_analytic = exp(1.0 * Matrix(A)) * u0

sol1_gpu = solve(prob_gpu, LinearExponential(krylov = :off))(1.0) |> Vector
@test_broken sol1_gpu = solve(prob_gpu, LinearExponential(krylov = :off))(1.0) |> Vector
sol2_gpu = solve(prob_gpu, LinearExponential(krylov = :simple))(1.0) |> Vector
sol3_gpu = solve(prob_gpu, LinearExponential(krylov = :adaptive))(1.0) |> Vector

Expand Down

0 comments on commit 236e987

Please sign in to comment.