You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by re...@apache.org on 2019/09/23 17:25:22 UTC

[incubator-mxnet] branch master updated (7344c91 -> 72b4d9b)

This is an automated email from the ASF dual-hosted git repository.

reminisce pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git.


    from 7344c91  numpy operator around (#16126)
     add 8af1b57  numpy operator arctan2 (#15890)
     add ae2f1bb  numpy operator nonzero (#15838)
     add bea5653  numpy operator hypot (#15901)
     add 72b4d9b  tvm numpy operator deg2rad && rad2deg (#16015)

No new revisions were added by this update.

Summary of changes:
 contrib/tvmop/basic/ufunc.py                       | 137 ++++++++++++-
 python/mxnet/_numpy_op_doc.py                      |  48 +++++
 python/mxnet/ndarray/numpy/_op.py                  | 213 ++++++++++++++++++++-
 python/mxnet/numpy/multiarray.py                   | 213 ++++++++++++++++++++-
 python/mxnet/symbol/numpy/_symbol.py               | 167 +++++++++++++++-
 src/operator/contrib/tvmop/ufunc.cc                | 113 +++++++++++
 src/operator/math_functions-inl.h                  |   2 +
 src/operator/mshadow_op.h                          |  10 +
 src/operator/numpy/np_elemwise_broadcast_op.cc     | 119 ++++++++++++
 src/operator/numpy/np_elemwise_broadcast_op.cu     |  25 +++
 .../nnpack_util.h => numpy/np_nonzero_op-inl.h}    |  61 +++---
 src/operator/numpy/np_nonzero_op.cc                | 129 +++++++++++++
 src/operator/numpy/np_nonzero_op.cu                | 130 +++++++++++++
 src/operator/operator_tune.cc                      |   5 +
 .../tensor/elemwise_binary_scalar_op_extended.cc   |   1 +
 tests/python/unittest/test_numpy_op.py             | 174 ++++++++++++++++-
 16 files changed, 1505 insertions(+), 42 deletions(-)
 copy src/operator/{nnpack/nnpack_util.h => numpy/np_nonzero_op-inl.h} (50%)
 create mode 100644 src/operator/numpy/np_nonzero_op.cc
 create mode 100644 src/operator/numpy/np_nonzero_op.cu