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/08 00:02:12 UTC

[incubator-mxnet] branch master updated (79c576b -> 892f982)

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 79c576b  [ONNX export] Fixing spatial export for batchnorm (#17711)
     add 892f982  * impl - linalg.lstsq for cpu (#17950)

No new revisions were added by this update.

Summary of changes:
 python/mxnet/ndarray/numpy/linalg.py               |  81 ++-
 python/mxnet/numpy/fallback_linalg.py              |   2 -
 python/mxnet/numpy/linalg.py                       |  73 ++-
 python/mxnet/numpy_dispatch_protocol.py            |   1 +
 python/mxnet/symbol/numpy/linalg.py                |  67 ++-
 src/operator/c_lapack_api.cc                       |  12 +
 src/operator/c_lapack_api.h                        |  64 ++-
 src/operator/numpy/linalg/np_lstsq-inl.h           | 593 +++++++++++++++++++++
 src/operator/numpy/linalg/np_lstsq.cc              |  97 ++++
 .../numpy/{np_memory_op.cu => linalg/np_lstsq.cu}  |  11 +-
 .../python/unittest/test_numpy_interoperability.py |  41 +-
 tests/python/unittest/test_numpy_op.py             |  76 +++
 12 files changed, 1095 insertions(+), 23 deletions(-)
 create mode 100644 src/operator/numpy/linalg/np_lstsq-inl.h
 create mode 100644 src/operator/numpy/linalg/np_lstsq.cc
 copy src/operator/numpy/{np_memory_op.cu => linalg/np_lstsq.cu} (79%)