From 6be7992b36734896bc19b84717c16ee5a71b6445 Mon Sep 17 00:00:00 2001 From: Katharine Hyatt Date: Tue, 7 Jan 2025 19:40:59 -0500 Subject: [PATCH] Fix bad zeros --- test/libraries/cublas_level3.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/libraries/cublas_level3.jl b/test/libraries/cublas_level3.jl index 057284c51d..fd52ef3ea8 100644 --- a/test/libraries/cublas_level3.jl +++ b/test/libraries/cublas_level3.jl @@ -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