Skip to content
This repository was archived by the owner on Mar 12, 2021. It is now read-only.

Commit c0a73bc

Browse files
committed
Improve mul! testset names
1 parent f380ccd commit c0a73bc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/sparse.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2011,7 +2011,7 @@ end
20112011
A = sparse(rand(elty,m,m))
20122012
x = rand(elty,m)
20132013
y = rand(elty,m)
2014-
@testset "csr" begin
2014+
@testset "csr -- $elty" begin
20152015
d_x = CuArray(x)
20162016
d_y = CuArray(y)
20172017
d_A = CuSparseMatrixCSR(A)
@@ -2030,7 +2030,7 @@ end
20302030
z = adjoint(A) * x
20312031
@test z h_y
20322032
end
2033-
@testset "csc" begin
2033+
@testset "csc -- $elty" begin
20342034
d_x = CuArray(x)
20352035
d_y = CuArray(y)
20362036
d_A = CuSparseMatrixCSC(A)

0 commit comments

Comments
 (0)