You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by la...@apache.org on 2020/07/16 07:03:12 UTC

[incubator-mxnet] branch master updated (6901325 -> 8198442)

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

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


    from 6901325  Add the newest mxnet discuss  version. Add d2l.ai (#18663)
     add 8198442  [numpy] symbolic advanced indexing (#18319)

No new revisions were added by this update.

Summary of changes:
 python/mxnet/numpy/multiarray.py             |   8 +
 python/mxnet/symbol/numpy/_symbol.py         |  19 +-
 src/operator/numpy/np_indexing_op.cc         | 551 +++++++++++++++++++++++++++
 src/operator/numpy/np_indexing_op.cu         | 452 ++++++++++++++++++++++
 src/operator/numpy/np_indexing_op.h          | 130 +++++++
 tests/python/unittest/test_gluon_indexing.py | 104 +++++
 6 files changed, 1262 insertions(+), 2 deletions(-)
 create mode 100644 src/operator/numpy/np_indexing_op.cc
 create mode 100644 src/operator/numpy/np_indexing_op.cu
 create mode 100644 src/operator/numpy/np_indexing_op.h
 create mode 100644 tests/python/unittest/test_gluon_indexing.py