Skip to content

Commit a82a03d

Browse files
committed
update docstring
1 parent b979b01 commit a82a03d

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
@@ -575,7 +575,7 @@ end
575575
Computes syrk/herk for generic number types. If `conjugate` is false computes syrk, i.e.,
576576
``A transpose(A) α + C β`` if `aat` is true, and ``transpose(A) A α + C β`` otherwise.
577577
If `conjugate` is true computes herk, i.e., ``A A' α + C β`` if `aat` is true, and
578-
``A' A α + C β`` otherwise.
578+
``A' A α + C β`` otherwise. Only the upper triangular is computed.
579579
"""
580580
function generic_syrk!(C::StridedMatrix{T}, A::StridedVecOrMat{T}, conjugate::Bool, aat::Bool, α, β) where {T<:Number}
581581
require_one_based_indexing(C, A)

0 commit comments

Comments
 (0)