Skip to content

Commit

Permalink
Update test/onemkl.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
amontoison authored and maleadt committed Nov 11, 2024
1 parent eacbd11 commit 08e7dfa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 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 = rand(T)
beta = zero(T) # 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 @@ -745,7 +745,7 @@ end
C = rand(T,m,m)
dC = oneArray(C)
beta = rand(T)
oneMKL.trsm!('L','U','N','N',alpha,beta,dA,dB,dC)
oneMKL.trsm!('R','U','N','N',alpha,beta,dA,dB,dC)
h_C = Array(dC)
D = alpha*(A/B) + beta*C
@test D h_C
Expand Down

0 comments on commit 08e7dfa

Please sign in to comment.