Skip to content

Commit bee1f1f

Browse files
committed
src/matmul.jl
1 parent ce86b9d commit bee1f1f

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/matmul.jl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -593,6 +593,8 @@ Base.@constprop :aggressive function generic_matmatmul_wrapper!(C::StridedMatrix
593593
return _generic_matmatmul!(C, wrap(A, tA), wrap(B, tB), α, β)
594594
end
595595

596+
#if conjugate is true, computes A A' α + C β if aat is true, and A' A α + C β otherwise
597+
#if conjugate is false, computes A transpose(A) α + C β if aat is true, and tranpose(A) A α + C β otherwise
596598
function generic_syrk!(C::StridedMatrix{T}, A::StridedVecOrMat{T}, conjugate::Bool, aat::Bool, α, β) where {T<:Number}
597599
require_one_based_indexing(C, A)
598600
nC = checksquare(C)

0 commit comments

Comments
 (0)