-
Notifications
You must be signed in to change notification settings - Fork 7
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
Multiple right-hand sides? #31
Comments
I'll have a look. |
The right hand side is limited to a single vector even in the original fortran source. It would be possible to extend it to multiple righthand sides (a rectangular matrix on the right hand side). Or, one can set the righthand side vector multiple times and use a preexisting factorization for quick solves. |
I got the following methods to work for my benchmarks:
On another note, I suppose the performance of the backsolve is up to the implementations in ``GenericBlasLapackFragments.jl```. |
Hi!
My goal is to use the
SparseCSCInterface
to get LU factorizations that solve both systems with single and multiple right-hand sides.The documentation claims that the API supports multiple right-hand sides. The
Problem
interface does not complain when a matrix right-hand side is passed withinfullrhs!
. However, only the first column is available and used.Sure enough, when solving the underlying
triangularsolve!
requires an AbstractVector.Is this intended?
The text was updated successfully, but these errors were encountered: