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/03/23 19:42:43 UTC

[incubator-mxnet] branch master updated (3840786 -> 9a355eb)

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 3840786  cmake: Set DMLC_LOG_FATAL_THROW only for building mxnet and not for tvm (#17878)
     add 9a355eb  [Numpy] Kron operator (#17323)

No new revisions were added by this update.

Summary of changes:
 benchmark/python/ffi/benchmark_ffi.py              |   1 +
 python/mxnet/ndarray/numpy/_op.py                  |  47 ++-
 python/mxnet/numpy/multiarray.py                   |  48 ++-
 python/mxnet/numpy_dispatch_protocol.py            |   1 +
 python/mxnet/symbol/numpy/_symbol.py               |  48 ++-
 .../operator/numpy/{np_memory_op.cc => np_kron.cc} |  11 +-
 src/operator/numpy/np_kron-inl.h                   | 322 +++++++++++++++++++++
 src/operator/numpy/np_kron.cc                      |  94 ++++++
 src/operator/numpy/{np_dot.cu => np_kron.cu}       |  14 +-
 .../python/unittest/test_numpy_interoperability.py |   8 +
 tests/python/unittest/test_numpy_op.py             |  81 ++++++
 11 files changed, 660 insertions(+), 15 deletions(-)
 copy src/api/operator/numpy/{np_memory_op.cc => np_kron.cc} (84%)
 create mode 100644 src/operator/numpy/np_kron-inl.h
 create mode 100644 src/operator/numpy/np_kron.cc
 copy src/operator/numpy/{np_dot.cu => np_kron.cu} (75%)