File tree Expand file tree Collapse file tree 1 file changed +1
-15
lines changed
Expand file tree Collapse file tree 1 file changed +1
-15
lines changed Original file line number Diff line number Diff 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)
@@ -85,4 +71,4 @@ using Test
8571 # This should error since CUSOLVERRF only supports Float64
8672 @test_throws Exception solve (prob_f32, CUSOLVERRFFactorization ())
8773 end
88- end
74+ end
You can’t perform that action at this time.
0 commit comments