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/12/19 06:16:37 UTC

[incubator-mxnet] branch master updated (a18250d -> a7f33eb)

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 a18250d  Add silent option to quantization script (#17094)
     add a7f33eb  numpy bincount (#16965)

No new revisions were added by this update.

Summary of changes:
 python/mxnet/ndarray/numpy/_op.py                  |  59 +++++++-
 python/mxnet/numpy/multiarray.py                   |  53 ++++++-
 python/mxnet/numpy_dispatch_protocol.py            |   1 +
 python/mxnet/symbol/numpy/_symbol.py               |  36 ++++-
 src/operator/numpy/np_bincount_op-inl.h            | 147 +++++++++++++++++++
 src/operator/numpy/np_bincount_op.cc               | 133 +++++++++++++++++
 src/operator/numpy/np_bincount_op.cu               | 160 +++++++++++++++++++++
 .../python/unittest/test_numpy_interoperability.py |  18 +++
 tests/python/unittest/test_numpy_op.py             |  50 +++++++
 9 files changed, 654 insertions(+), 3 deletions(-)
 create mode 100644 src/operator/numpy/np_bincount_op-inl.h
 create mode 100644 src/operator/numpy/np_bincount_op.cc
 create mode 100644 src/operator/numpy/np_bincount_op.cu