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/04/09 21:23:52 UTC

[incubator-mxnet] branch master updated (5ff2994 -> 6a931c7)

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 5ff2994  [Website 2.0] General Version Dropdown (#17948)
     add 6a931c7  Add np.linalg.qr (#17851)

No new revisions were added by this update.

Summary of changes:
 python/mxnet/ndarray/numpy/linalg.py               |  63 ++-
 python/mxnet/numpy/fallback_linalg.py              |   4 +-
 python/mxnet/numpy/linalg.py                       |  61 ++-
 python/mxnet/numpy_dispatch_protocol.py            |   1 +
 python/mxnet/symbol/numpy/linalg.py                |  63 ++-
 src/operator/c_lapack_api.cc                       |  20 +
 src/operator/c_lapack_api.h                        |  72 +++
 src/operator/numpy/linalg/np_qr-inl.h              | 481 +++++++++++++++++++++
 src/operator/numpy/linalg/np_qr.cc                 | 105 +++++
 .../numpy/linalg/{np_potrf.cu => np_qr.cu}         |  10 +-
 .../python/unittest/test_numpy_interoperability.py |  16 +-
 tests/python/unittest/test_numpy_op.py             |  76 ++++
 12 files changed, 950 insertions(+), 22 deletions(-)
 create mode 100644 src/operator/numpy/linalg/np_qr-inl.h
 create mode 100644 src/operator/numpy/linalg/np_qr.cc
 copy src/operator/numpy/linalg/{np_potrf.cu => np_qr.cu} (81%)