-
Notifications
You must be signed in to change notification settings - Fork 39
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
SVD on big floats #42
Comments
KrylovKit still uses the julia LinearAlgebra standard library, or thus BLAS and LAPACK, for dealing with the small problems projected on the Krylov subspace. So it is currently restricted to the same |
Thanks, indeed I tracked down some issues in the Julia repo itself. Could it rely on GenericSVD? |
It could, but so far I did not find the time to implement these backends. It also seems there is some fragmentation of linear algebra routines for generic numbers / BigFloat across different packages. |
Edit on this: GenericSVD is deprecated, GenericLinearAlgebra implements all the necessary features I believe? |
Observed on master and Julia 1.5,
svdsolve
does not seem to work with BigFloats:The text was updated successfully, but these errors were encountered: