Skip to content

Commit 9241d8e

Browse files
amontoisonmaleadt
authored andcommitted
Update wrappers_blas.jl
1 parent db5d54c commit 9241d8e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/mkl/wrappers_blas.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1196,7 +1196,7 @@ function trmm!(side::Char,
11961196
A::oneStridedMatrix{T},
11971197
B::oneStridedMatrix{T},
11981198
C::oneStridedMatrix{T}) where T
1199-
trmm!(side, uplo, transa, diag, alpha, one(T), A, B, C)
1199+
trmm!(side, uplo, transa, diag, alpha, zero(T), A, B, C)
12001200
end
12011201
function trsm!(side::Char,
12021202
uplo::Char,
@@ -1206,7 +1206,7 @@ function trsm!(side::Char,
12061206
A::oneStridedMatrix{T},
12071207
B::oneStridedMatrix{T},
12081208
C::oneStridedMatrix{T}) where T
1209-
trsm!(side, uplo, transa, diag, alpha, one(T), A, B, C)
1209+
trsm!(side, uplo, transa, diag, alpha, zero(T), A, B, C)
12101210
end
12111211

12121212
## hemm

0 commit comments

Comments
 (0)