From 236e987b958fc47f64d6e7d3a0fd3cd2b329a0e9 Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Thu, 21 Nov 2024 14:14:57 -0800 Subject: [PATCH] Update test/gpu/linear_exp.jl --- test/gpu/linear_exp.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/gpu/linear_exp.jl b/test/gpu/linear_exp.jl index 634c49678d..6c75557877 100644 --- a/test/gpu/linear_exp.jl +++ b/test/gpu/linear_exp.jl @@ -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