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 2019/12/27 03:19:31 UTC

[incubator-mxnet] branch master updated (37197b6 -> 38388ff)

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 37197b6  any/all (#17087)
     add 38388ff  fix format (#17100)

No new revisions were added by this update.

Summary of changes:
 python/mxnet/ndarray/numpy/linalg.py               |  50 +-
 python/mxnet/numpy/linalg.py                       |  50 +-
 python/mxnet/numpy_dispatch_protocol.py            |   1 +
 python/mxnet/symbol/numpy/linalg.py                |  50 +-
 src/operator/numpy/linalg/np_tensorsolve-inl.h     | 557 +++++++++++++++++++++
 src/operator/numpy/linalg/np_tensorsolve.cc        | 145 ++++++
 .../linalg/{np_gesvd.cu => np_tensorsolve.cu}      |  15 +-
 .../python/unittest/test_numpy_interoperability.py |  61 +++
 tests/python/unittest/test_numpy_op.py             | 154 ++++++
 9 files changed, 1072 insertions(+), 11 deletions(-)
 create mode 100644 src/operator/numpy/linalg/np_tensorsolve-inl.h
 create mode 100644 src/operator/numpy/linalg/np_tensorsolve.cc
 copy src/operator/numpy/linalg/{np_gesvd.cu => np_tensorsolve.cu} (72%)