Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/mkl/linalg.jl
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,9 @@ function LinearAlgebra.generic_matvecmul!(Y::oneVector, tA::AbstractChar, A::one
if tA in ('N', 'T', 'C')
return gemv!(tA, alpha, A, B, beta, Y)
elseif tA in ('S', 's')
return symv!(tA == 'S' ? 'U' : 'L', alpha, A, x, beta, y)
return symv!(tA == 'S' ? 'U' : 'L', alpha, A, B, beta, Y)
elseif tA in ('H', 'h')
return hemv!(tA == 'H' ? 'U' : 'L', alpha, A, x, beta, y)
return hemv!(tA == 'H' ? 'U' : 'L', alpha, A, B, beta, Y)
end
end
end
Expand Down
Loading