-
-
Notifications
You must be signed in to change notification settings - Fork 9
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
cond(F)
is not implemented for lufact return type
#421
Comments
Actually, this seems to be implemented; EDIT: OK, the real reason is that this call does not have the default
I would also expect
Let me know if I am missing something here. |
cond
is not implemented for lufact return typecond(F)
is not implemented for lufact return type
I think the documentation is right since |
To clarify: I think
I think the table is fine as it is, but I think it would make sense to add a docstring for a second form of |
This line is pretty broken. It asks LAPACK for the Inf norm condition number estimate but it passes the two norm of the input. This is why
Sounds like the right solution. |
And actually, I think |
argument. The old version was broken and inefficient. While it would be possible to fix just the bug, the performance problem is a consequence of how condition number estimation works, i.e. a norm estimate is required and that is not natural to produce from the factorized matrix. Hence, the change to a helper function. Fixes #21453
argument. The old version was broken and inefficient. While it would be possible to fix just the bug, the performance problem is a consequence of how condition number estimation works, i.e. a norm estimate is required and that is not natural to produce from the factorized matrix. Hence, the change to a helper function. Fixes #21453
I decided to take a different approach. See JuliaLang/julia#21577. @garrison It would be great if you could open a PR with the doc changes. |
argument. The old version was broken and inefficient. While it would be possible to fix just the bug, the performance problem is a consequence of how condition number estimation works, i.e. a norm estimate is required and that is not natural to produce from the factorized matrix. Hence, the change to a helper function. Fixes #21453
argument. The old version was broken and inefficient. While it would be possible to fix just the bug, the performance problem is a consequence of how condition number estimation works, i.e. a norm estimate is required and that is not natural to produce from the factorized matrix. Hence, the change to a helper function. Fixes #21453
argument. The old version was broken and inefficient. While it would be possible to fix just the bug, the performance problem is a consequence of how condition number estimation works, i.e. a norm estimate is required and that is not natural to produce from the factorized matrix. Hence, the change to a helper function. Fixes #21453
…#21577) argument. The old version was broken and inefficient. While it would be possible to fix just the bug, the performance problem is a consequence of how condition number estimation works, i.e. a norm estimate is required and that is not natural to produce from the factorized matrix. Hence, the change to a helper function. Fixes #21453
Ref https://github.com/JuliaLang/julia/issues/21453#issuecomment-296036653 (cherry picked from commit 6f7c763) ref #21891
The documentation for
lufact
claims the returned factorization type implementscond()
, but it does not:A similar issue exists in base/sparse/umfpack.jl.
I believe these methods should be implemented (otherwise the doc should be changed).
The text was updated successfully, but these errors were encountered: