-
Notifications
You must be signed in to change notification settings - Fork 3.8k
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
Support dpotrs, dgetrs, dormqr, dtrtrs, and eigen decomposition for asymmetric matrix #6764
Comments
Yes, it is okay to merge them. Thanks. |
The current support of SVD can be improved too. Typically, we use the input matrix to hold the U after the decomposition. But Nd4j's gesvd() method requires U be a m x m matrix, where m is the number of rows. In most case, m be very large (thousand to millions). We cannot hold such big matrix in memory and it is also meaningless to compute m left singular vectors. |
Looking into the nd4j implementations, I would suggest the following improvements:
Thanks! |
They are needed to solve least square problems with the QR decomposition. ND4J supports QR decomposition already. Thanks.
Aha! Link: https://skymindai.aha.io/features/ND4J-145
The text was updated successfully, but these errors were encountered: