-
Notifications
You must be signed in to change notification settings - Fork 58
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
Adapt matrix factorizations from nalgebra? #191
Comments
That's certainly a good question! I'm really happy to see more work on pure rust linear algebra algorithms. Rulinalg has been rather dormant for some time now, so it's good to see things are happening in the ecosystem. As for making use of each other's effort, and assuming the continued co-existence of the two libraries, I'm sure we can learn a lot from each other. Beyond that, did you have anything particular in mind? |
Both projects could benefit from each other, like GCC and LLVM do, but differents projects have different objectives and differents leaderships. |
I basically stumbled upon the announcement and thought "wait a second, lots of these have open issues on rulinalg, maybe there is a chance for symbiosis here". 😉 |
I have only had time to loosely follow what has been happening with nalgebra but I agree that it is good to see things moving in the ecosystem. Unfortunately I just haven't found the time to pick up my own slack and get things moving with rulinalg again. I would be more than happy to see if there is a way we can work together towards some greater good. I am also a little unsure about exactly how this relationship would work - especially given the lack of activity on my end. But I'm very open to any ideas about how we could make a meaningful proposal. |
FYI: Implementing matrix decompositions (Cholesky, LQ, sym eigen) Abstract:
|
With the latest release (v0.13) nalgebra now supports Rust-native implementations of the following matrix factorizations:
This made me wonder if instead of reinventing the wheel for rulinalg, maybe rulinalg and nalgebra should join or make use of the other side's efforts with these operations?
cc @sebcrozet
Related issues (varying degrees), but not limited to:
The text was updated successfully, but these errors were encountered: