arcadiaphy opened a new issue #14962: Improve linear algebra functions URL: https://github.com/apache/incubator-mxnet/issues/14962 One of my projects needs to do matrix inversion which is not very accurate and convenient to do with Cholesky factorization, so I decided to implement myself and improve the linalg package in the same time. New operators to add: | operator | function | progress | |----------|----------------------------------------|----------| | inverse | matrix inversion | | | det | matrix determinant | | | logdet | log determinant | | | svd | singular value decomposition | | | pinverse | pseudo-inverse (Moore-Penrose inverse) | | Pytorch use MAGMA in their implementation, I'll try to only use cuBLAS and cuSolver in order not to add dependencies.
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
