Skip to content

Commit 8b23860

Browse files
Github action runnermichel2323
authored andcommitted
symv, hemv, potrf fixes
1 parent 39ae91f commit 8b23860

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lib/mkl/linalg.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,9 +98,9 @@ function LinearAlgebra.generic_matvecmul!(Y::oneVector, tA::AbstractChar, A::one
9898
if tA in ('N', 'T', 'C')
9999
return gemv!(tA, alpha, A, B, beta, Y)
100100
elseif tA in ('S', 's')
101-
return symv!(tA == 'S' ? 'U' : 'L', alpha, A, x, beta, y)
101+
return symv!(tA == 'S' ? 'U' : 'L', alpha, A, B, beta, Y)
102102
elseif tA in ('H', 'h')
103-
return hemv!(tA == 'H' ? 'U' : 'L', alpha, A, x, beta, y)
103+
return hemv!(tA == 'H' ? 'U' : 'L', alpha, A, B, beta, Y)
104104
end
105105
end
106106
end

0 commit comments

Comments
 (0)