You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by ha...@apache.org on 2020/01/17 22:38:28 UTC

[incubator-mxnet] branch master updated (11a2dcb -> 22c7ef7)

This is an automated email from the ASF dual-hosted git repository.

haoj pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git.


    from 11a2dcb  [MXNET-1438] Adding SDML loss function (#17298)
     add 22c7ef7  * update source files (#17279)

No new revisions were added by this update.

Summary of changes:
 python/mxnet/ndarray/numpy/linalg.py               |  74 ++-
 python/mxnet/numpy/linalg.py                       |  70 +-
 python/mxnet/numpy_dispatch_protocol.py            |   1 +
 python/mxnet/symbol/numpy/linalg.py                |  73 +-
 src/operator/c_lapack_api.cc                       |  13 +
 src/operator/c_lapack_api.h                        |  64 ++
 src/operator/numpy/linalg/np_pinv-inl.h            | 738 +++++++++++++++++++++
 src/operator/numpy/linalg/np_pinv.cc               | 195 ++++++
 .../numpy/linalg/{np_potrf.cu => np_pinv.cu}       |  15 +-
 .../python/unittest/test_numpy_interoperability.py |  22 +
 tests/python/unittest/test_numpy_op.py             |  79 +++
 11 files changed, 1334 insertions(+), 10 deletions(-)
 create mode 100644 src/operator/numpy/linalg/np_pinv-inl.h
 create mode 100644 src/operator/numpy/linalg/np_pinv.cc
 copy src/operator/numpy/linalg/{np_potrf.cu => np_pinv.cu} (75%)