Skip to content

Commit 3a9b62d

Browse files
authored
fix dispatch to herk
1 parent 1ce8426 commit 3a9b62d

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
@@ -743,7 +743,7 @@ Base.@constprop :aggressive function herk_wrapper!(C::Union{StridedMatrix{T}, St
743743
# Result array does not need to be initialized as long as beta==0
744744
# C = Matrix{T}(undef, mA, mA)
745745

746-
if iszero(β) || issymmetric(C)
746+
if iszero(β) || ishermitian(C)
747747
alpha, beta = promote(α, β, zero(T))
748748
if (alpha isa Union{Bool,T} &&
749749
beta isa Union{Bool,T} &&

0 commit comments

Comments
 (0)