-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
Add qrfact(SparseMatrixCSC) by wrapping SPQR. #10180
Conversation
9fd3104
to
74c5b11
Compare
👏 |
74c5b11
to
7ae8adf
Compare
Now including the new files and with the typos corrected. |
This also needs a mention in NEWS. |
5a68314
to
df2eff3
Compare
… work for least squares problems. Some tests.
b47bd0f
to
aab52ab
Compare
…f the functions so we have to do that by default.
aab52ab
to
d8e5aab
Compare
The test error is not related to this pr so I'll merge. The error is because a test matrix sometimes doesn't have zero pivots even though it has most of the time. We might want to adjust the test a bit if it shows up more often. |
Add qrfact(SparseMatrixCSC) by wrapping SPQR.
Can we use a known constant test matrix that causes that condition? CI failures should be taken seriously and if they have known, straightforward solutions we should fix them. |
Yes, we can construct a matrix that fails deterministically instead, so that is the way to avoid this problem. |
With ab72de8 we shouldn't see the random test failures from |
Also make
\(SparseMatrixCSC)
work for least squares problems.