Skip to content

Commit

Permalink
Test more options for symmetric factorizations
Browse files Browse the repository at this point in the history
  • Loading branch information
amontoison committed Mar 14, 2024
1 parent dc2f311 commit c99cc81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_cudss.jl
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ function cudss_execution()

symmetric_hermitian_pivots = T <: Real ? ('C', 'R', 'N') : ('N',)
@testset "Symmetric -- Hermitian" begin
@testset "view = $view" for view in ('F',)
@testset "view = $view" for view in ('F', 'L', 'U')
@testset "Pivoting = $pivot" for pivot in symmetric_hermitian_pivots
A_cpu = sprand(T, n, n, 0.01) + I
A_cpu = A_cpu + A_cpu'
Expand Down Expand Up @@ -170,7 +170,7 @@ function cudss_execution()
end

@testset "SPD -- HPD" begin
@testset "view = $view" for view in ('F',)
@testset "view = $view" for view in ('F', 'L', 'U')
@testset "Pivoting = $pivot" for pivot in ('C', 'R', 'N')
A_cpu = sprand(T, n, n, 0.01)
A_cpu = A_cpu * A_cpu' + I
Expand Down

0 comments on commit c99cc81

Please sign in to comment.