Peroxide
Peroxide copied to clipboard
Cholesky decomposition
Hey, thanks for the library, it's a pleasure to use.
I was wondering whether there are any plans to implement Cholesky decomposition? I understand it's probably not a high priority as LU decomposition is already implemented, but would be cool to have some additional speed there!
Thanks, Andrew
Hello! Thanks for your interest.
Yes, but there is no specific due date. As you said, Cholesky decomposition is cool for speed so, it is worth implementing in peroxide. Unfortunately, since I'm busy nowadays, thus it takes a while for pure Rust implementation.
But, for O3
feature (BLAS & LAPACK integrated), I'll implement Cholesky decomposition soon. (Maybe in this week or next week.)
Thanks, TG
I implemented Cholesky Decomposition in Ver 0.30.11
:sunglasses:
If you want to use it, refer to Doc.
Caution: Should use O3
feature.
Oh wow, that was insanely quick!
Thank you very much for implementing this.
Andrew