Skip to content

Commit

Permalink
Fix bad zeros
Browse files Browse the repository at this point in the history
  • Loading branch information
kshyatt committed Jan 8, 2025
1 parent eba40e5 commit 6be7992
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/libraries/cublas_level3.jl
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ k = 13
A = triu(rand(elty, m, m))
B = rand(elty,m,n)
C = alpha*A*B
h_C = zeros(C)
h_C = zeros(elty, m, n)
CUBLAS.xt_trmm!('L','U','N','N',alpha,copy(A),copy(B),h_C)
@test C h_C
end
Expand Down

0 comments on commit 6be7992

Please sign in to comment.