-
Notifications
You must be signed in to change notification settings - Fork 106
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bring back 5-arg mul!
to lsmr
#206
Comments
Not sure this is ever coming back. We may want to consider using LinearAlgebra.BLAS.gemv! instead. |
Please avoid calling the BLAS wrappers directly if possible. It would be better to call a generic version. |
it is endlessly frustrating that we don't have an efficient generic in-place 5 argument |
JuliaLang/julia#29634 has been merged (huzzah!) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In #205 I have temporarily removed the 5-argument
mul!(y, A, x, a, b)
calls from lsmr, since there is no implementation for denseA
. It worked becauselsmr
implemented it itself, but I guess nobody wants IterativeSolvers.jl to extendLinearAlgebra.mul!
.Let's wait till we have the 5-argument
mul!
in LinearAlgebra and bring it back to lsmr only then.The text was updated successfully, but these errors were encountered: