-
-
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
Optimisation of getproperty for UmfpackLU object #40663
Optimisation of getproperty for UmfpackLU object #40663
Conversation
This needs some tests, but otherwise looks great. |
f635263
to
0fbbb20
Compare
I added tests to assess that accessing elements individually works as intended. I am not sure what else there is to test, let me know if you see something that is not covered. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A blind comment for quick consideration.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's get rid of umf_extract
. 😛
…evant information)
0fbbb20
to
0fb5d6f
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since tests pass I assume all the little details are correct.
I think it's ready. |
That's what I feel too. |
…evant information) (JuliaLang#40663)
using new efficient method from JuliaLang#40663
…evant information) (JuliaLang#40663)
…evant information) (JuliaLang#40663)
…evant information) (JuliaLang#40663)
…evant information) (JuliaLang#40663)
Fix JuliaLang/LinearAlgebra.jl#827
When calling
getproperty
on anUmfpackLU
object only the requested information is copied in the call toumfpack_*_get_numeric
.It is faster and more memory efficient.