Skip to content

Commit

Permalink
Re-enable test.
Browse files Browse the repository at this point in the history
  • Loading branch information
maleadt committed Feb 6, 2025
1 parent ecf57c7 commit f0be27f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/libraries/cublas/level2.jl
Original file line number Diff line number Diff line change
Expand Up @@ -120,14 +120,14 @@ k = 13
end
end
end
# This is causing illegal memory access errors... unsure why
#=@testset "mul! y = $f(A) * x * $Ts(a) + y * $Ts(b)" for f in (identity, transpose, adjoint), Ts in (Int, elty)

@testset "mul! y = $f(A) * x * $Ts(a) + y * $Ts(b)" for f in (identity, transpose, adjoint), Ts in (Int, elty)
y, A, x = rand(elty, 5), rand(elty, 5, 5), rand(elty, 5)
dy, dA, dx = CuArray(y), CuArray(A), CuArray(x)
mul!(dy, f(dA), dx, Ts(1), Ts(2))
mul!(y, f(A), x, Ts(1), Ts(2))
@test Array(dy) y
end=#
end

@testset "hermitian" begin
y, A, x = rand(elty, 5), Hermitian(rand(elty, 5, 5)), rand(elty, 5)
Expand Down

0 comments on commit f0be27f

Please sign in to comment.