Skip to content

Commit

Permalink
Update gpu.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
amontoison committed Oct 10, 2022
1 parent ffc9329 commit c7902ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/gpu/gpu.jl
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ end

function test_solver(S, M)
n = 10
memory = 5
A = M(undef, n, n)
b = S(undef, n)
FC = eltype(S)
solver = GmresSolver(n, n, S)
solver = GmresSolver(n, n, memory, S)
solve!(solver, A, b) # Test that we don't have errors
end

0 comments on commit c7902ed

Please sign in to comment.