Skip to content

Commit

Permalink
Update intel.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
amontoison committed Sep 30, 2024
1 parent facd459 commit 34fe370
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/gpu/intel.jl
Original file line number Diff line number Diff line change
Expand Up @@ -79,15 +79,15 @@ include("gpu.jl")
rtol = ε

@testset "GMRES -- $FC" begin
A, b = nonsymmetric_indefinite(FC=FC)
A, b = symmetric_definite(FC=FC)
A = M(A)
b = S(b)
x, stats = gmres(A, b)
@test norm(b - A * x) atol + rtol * norm(b)
end

@testset "block-GMRES -- $FC" begin
A, b = nonsymmetric_indefinite(FC=FC)
A, b = symmetric_definite(FC=FC)
B = hcat(b, -b)
A = M(A)
B = M(B)
Expand Down

0 comments on commit 34fe370

Please sign in to comment.