You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by GitBox <gi...@apache.org> on 2019/05/15 11:21:03 UTC

[GitHub] [incubator-mxnet] arcadiaphy opened a new issue #14962: Improve linear algebra functions

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:
users@infra.apache.org


With regards,
Apache Git Services