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/27 23:32:29 UTC

[incubator-mxnet] branch master updated (22e5ae3 -> 6ab4220)

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 22e5ae3  add type switch to weight tensor (#16543)
     add 6ab4220  numpy doc enhancement (#16637)

No new revisions were added by this update.

Summary of changes:
 python/mxnet/_numpy_op_doc.py                      |  60 +++
 python/mxnet/base.py                               |   3 +
 python/mxnet/gluon/parameter.py                    |   3 +-
 python/mxnet/ndarray/numpy/_op.py                  | 156 +++++-
 python/mxnet/ndarray/numpy/random.py               |  12 +-
 python/mxnet/numpy/linalg.py                       |  25 +
 python/mxnet/numpy/multiarray.py                   | 545 +++++++++++++++++++--
 python/mxnet/numpy/random.py                       |  80 ++-
 python/mxnet/numpy/stride_tricks.py                |   9 +
 python/mxnet/numpy/utils.py                        |   4 +-
 python/mxnet/numpy_dispatch_protocol.py            |   2 +
 python/mxnet/numpy_extension/random.py             |   2 +-
 python/mxnet/symbol/numpy/_symbol.py               |  55 ++-
 python/mxnet/symbol/numpy/random.py                |   8 +-
 python/mxnet/util.py                               |  63 ++-
 src/operator/contrib/boolean_mask.cc               |   2 +-
 src/operator/contrib/boolean_mask.cu               |   2 +-
 src/operator/numpy/np_broadcast_reduce_op_index.cc |  11 +
 src/operator/numpy/np_broadcast_reduce_op_index.cu |   3 +
 src/operator/numpy/np_nonzero_op.cc                |   3 +-
 src/operator/numpy/np_nonzero_op.cu                |   2 +-
 tests/python/unittest/test_numpy_gluon.py          |  23 +
 .../python/unittest/test_numpy_interoperability.py |  28 ++
 tests/python/unittest/test_numpy_op.py             |  63 +--
 24 files changed, 1062 insertions(+), 102 deletions(-)