Skip to content

Commit 92801c2

Browse files
authored
Re-enable rocSPARSE & rocSOLVER tests (#652)
1 parent 1c82e55 commit 92801c2

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

test/rocsparse/interfaces.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,8 +148,8 @@
148148
dA = ROCSparseMatrixCSR(A)
149149

150150
@assert issymmetric(A)
151-
LinearAlgebra.mul!(C, f(Symmetric(A)), h(B), alpha, beta)
152-
LinearAlgebra.mul!(dC, f(Symmetric(dA)), h(dB), alpha, beta)
151+
LinearAlgebra.mul!(C, f(A), h(B), alpha, beta)
152+
LinearAlgebra.mul!(dC, f(dA), h(dB), alpha, beta)
153153
@test C collect(dC)
154154
end
155155

test/runtests.jl

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -105,10 +105,6 @@ PrettyTables.pretty_table(data; header=[
105105
"Workers", "Device", "Tests"], crop=:none)
106106

107107
runtests(AMDGPU; nworkers=np, nworker_threads=1, testitem_timeout=60 * 30) do ti
108-
# TODO broken tests or hang CI
109-
ti.name == "hip - rocSPARSE" && return false
110-
ti.name == "hip - rocSOLVER" && return false
111-
112108
for tt in TARGET_TESTS
113109
startswith(ti.name, tt) && return true
114110
end

0 commit comments

Comments
 (0)