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/10/20 19:52:41 UTC

[incubator-mxnet] branch master updated (b949716 -> 217ae02)

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 b949716  add interface for rand
     add 217ae02  Fix numpy bugs (#16537)

No new revisions were added by this update.

Summary of changes:
 python/mxnet/ndarray/ndarray.py         |  13 ++
 python/mxnet/numpy/multiarray.py        | 242 +++++++++++++++++++++++++++++---
 python/mxnet/symbol/numpy/_symbol.py    |  14 +-
 python/mxnet/util.py                    |   7 +-
 src/c_api/c_api_symbolic.cc             |  38 ++++-
 src/common/utils.h                      |   4 +
 src/operator/mshadow_op.h               |  28 ++++
 src/operator/mxnet_op.h                 |  15 ++
 src/operator/numpy/np_true_divide-inl.h | 146 +++++++++++++++++++
 src/operator/numpy/np_true_divide.cc    |  40 ++----
 src/operator/numpy/np_true_divide.cu    |  10 +-
 src/operator/operator_tune.cc           |   2 +
 tests/python/unittest/test_ndarray.py   |  24 +++-
 tests/python/unittest/test_numpy_op.py  |  44 ++++++
 tests/python/unittest/test_symbol.py    |  47 ++++++-
 15 files changed, 597 insertions(+), 77 deletions(-)
 create mode 100644 src/operator/numpy/np_true_divide-inl.h