Skip to content

Commit cbe2f39

Browse files
committed
Handle missing
1 parent 3a5bdbe commit cbe2f39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/matmul.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1021,7 +1021,7 @@ function _generic_matmatmul_nonadjtrans!(C, A, B, alpha, beta)
10211021
@inbounds for n in axes(B, 2), k in axes(B, 1)
10221022
# Balpha = B[k,n] * alpha, but we skip the multiplication in case isone(alpha)
10231023
Balpha = @stable_muladdmul MulAddMul(alpha, false)(B[k,n])
1024-
iszero(Balpha) && continue
1024+
!ismissing(Balpha) && iszero(Balpha) && continue
10251025
@simd for m in axes(A, 1)
10261026
C[m,n] = muladd(A[m,k], Balpha, C[m,n])
10271027
end

0 commit comments

Comments
 (0)