Skip to content

Commit aeba8a4

Browse files
committed
require one based indexing
1 parent 2f3a4e1 commit aeba8a4

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/matmul.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -595,6 +595,7 @@ Base.@constprop :aggressive function generic_matmatmul_wrapper!(C::StridedMatrix
595595
end
596596

597597
function generic_syrk!(C::StridedMatrix{T}, A::StridedVecOrMat{T}, conjugate::Bool, aat::Bool, α, β) where {T<:Number}
598+
require_one_based_indexing(C, A)
598599
nC = checksquare(C)
599600
m, n = size(A, 1), size(A, 2)
600601
mA = aat ? m : n

0 commit comments

Comments
 (0)