Skip to content

Commit c081ccc

Browse files
committed
Update blas.jl
1 parent 09164b4 commit c081ccc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/blas.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1520,10 +1520,10 @@ for (gemm, elty) in
15201520
chkstride1(A)
15211521
chkstride1(B)
15221522
chkstride1(C)
1523-
$fname(transA, transB, m, n,
1524-
ka, alpha, A, max(1,stride(A,2)),
1525-
B, max(1,stride(B,2)), beta, C,
1526-
max(1,stride(C,2)))
1523+
$gemm(transA, transB, m, n,
1524+
ka, alpha, A, max(1,stride(A,2)),
1525+
B, max(1,stride(B,2)), beta, C,
1526+
max(1,stride(C,2)))
15271527
C
15281528
end
15291529
function gemm(transA::AbstractChar, transB::AbstractChar, alpha::($elty), A::AbstractMatrix{$elty}, B::AbstractMatrix{$elty})

0 commit comments

Comments
 (0)