From f15a48a4ce47cd922353d2c9e56137d7e28eab8c Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Thu, 21 Nov 2024 14:15:15 -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 0dac2d3a7c..94f2fb14d5 100644 --- a/test/gpu/linear_exp.jl +++ b/test/gpu/linear_exp.jl @@ -29,7 +29,7 @@ prob2_gpu = ODEProblem(A2_gpu, u0_gpu, (0.0, 1.0)) sol2_2_gpu = solve(prob2_gpu, LinearExponential(krylov = :simple))(1.0) |> Vector sol2_3_gpu = solve(prob2_gpu, LinearExponential(krylov = :adaptive))(1.0) |> Vector -@test isapprox(sol2_1_gpu, sol_analytic, rtol = 1e-6) +@test_broken isapprox(sol2_1_gpu, sol_analytic, rtol = 1e-6) @test isapprox(sol2_2_gpu, sol_analytic, rtol = 1e-6) @test isapprox(sol2_3_gpu, sol_analytic, rtol = 1e-6) @test isapprox(sol2_4_gpu, sol_analytic, rtol = 1e-4) \ No newline at end of file