Skip to content

Commit

Permalink
Update wrappers_blas.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
amontoison committed Nov 4, 2024
1 parent ded5d02 commit 591699b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/onemkl.jl
Original file line number Diff line number Diff line change
Expand Up @@ -664,7 +664,7 @@ end

C = rand(T,m,n)
dC = oneArray(C)
beta = zero(T) # rand(T)
beta = rand(T)
oneMKL.trmm!('L','U','N','N',alpha,beta,dA,dB,dC)
h_C = Array(dC)
D = alpha*A*B + beta*C
Expand Down Expand Up @@ -695,7 +695,7 @@ end

C = rand(T,m,n)
dC = oneArray(C)
beta = zero(T) # rand(T)
beta = rand(T)
oneMKL.trsm!('L','U','N','N',alpha,beta,dA,dB,dC)
h_C = Array(dC)
D = alpha*(A\B) + beta*C
Expand Down Expand Up @@ -742,9 +742,9 @@ end
oneMKL.trsm!('R','U','N','N',alpha,dB,dC)
@test C Array(dC)

C = rand(T,m,n)
C = rand(T,m,m)
dC = oneArray(C)
beta = zero(T) # rand(T)
beta = rand(T)
oneMKL.trsm!('L','U','N','N',alpha,beta,dA,dB,dC)
h_C = Array(dC)
D = alpha*(A/B) + beta*C
Expand Down

0 comments on commit 591699b

Please sign in to comment.