Skip to content

Commit f1f3bb8

Browse files
Update test/gpu/cusolverrf.jl
1 parent 5175137 commit f1f3bb8

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

test/gpu/cusolverrf.jl

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -54,20 +54,6 @@ using Test
5454
@test norm(A2 * sol2.u - b2) / norm(b2) < 1e-10
5555
end
5656

57-
# Test multiple right-hand sides
58-
@testset "Multiple RHS" begin
59-
nrhs = 5
60-
B = rand(n, nrhs)
61-
62-
prob_multi = LinearProblem(A, B)
63-
sol_multi = solve(prob_multi, CUSOLVERRFFactorization())
64-
65-
# Check each solution
66-
for i in 1:nrhs
67-
@test norm(A * sol_multi.u[:, i] - B[:, i]) / norm(B[:, i]) < 1e-10
68-
end
69-
end
70-
7157
# Test adjoint solve
7258
@testset "Adjoint Solve" begin
7359
prob_adj = LinearProblem(A', b)

0 commit comments

Comments
 (0)