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/09 07:55:18 UTC

[incubator-mxnet] branch master updated (7736bfd -> 71b6272)

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 7736bfd  [Numpy] add op full_like, c++ impl, fix zeros_like, ones_like type inference (#16804)
     add 71b6272  use identity_with_cast (#16913)

No new revisions were added by this update.

Summary of changes:
 python/mxnet/ndarray/numpy/linalg.py               |  56 ++-
 python/mxnet/numpy/linalg.py                       |  56 ++-
 python/mxnet/numpy_dispatch_protocol.py            |   1 +
 python/mxnet/symbol/numpy/linalg.py                |  55 ++-
 src/operator/c_lapack_api.cc                       |  10 +
 src/operator/c_lapack_api.h                        |  39 +-
 src/operator/numpy/linalg/np_solve-inl.h           | 496 +++++++++++++++++++++
 src/operator/numpy/linalg/np_solve.cc              | 116 +++++
 .../numpy/linalg/{np_gesvd.cu => np_solve.cu}      |  14 +-
 .../python/unittest/test_numpy_interoperability.py |  22 +
 tests/python/unittest/test_numpy_op.py             |  91 ++++
 11 files changed, 944 insertions(+), 12 deletions(-)
 create mode 100644 src/operator/numpy/linalg/np_solve-inl.h
 create mode 100644 src/operator/numpy/linalg/np_solve.cc
 copy src/operator/numpy/linalg/{np_gesvd.cu => np_solve.cu} (74%)