You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the example below, I would expect M'*x to return a Vector{Float64} equivalent to [2.0]. But it looks like the fact that the matrix elements themselves should be adjoint is lost somewhere along the way to generic_matvecmul, which attempts straight multiplication of two vectors, rather than taking their inner product.
Here is a super stripped down MWE.
In the example below, I would expect
M'*x
to return aVector{Float64}
equivalent to[2.0]
. But it looks like the fact that the matrix elements themselves should beadjoint
is lost somewhere along the way togeneric_matvecmul
, which attempts straight multiplication of two vectors, rather than taking their inner product.In contrast, these three other similar operations, seem to work correctly:
The text was updated successfully, but these errors were encountered: