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 a6ed69e amax (#17176)
add 1cfaf3c [numpy]Add op delete (#17023)
No new revisions were added by this update.
Summary of changes:
python/mxnet/ndarray/numpy/_op.py | 63 +++-
python/mxnet/numpy/multiarray.py | 51 ++-
python/mxnet/numpy_dispatch_protocol.py | 1 +
python/mxnet/symbol/numpy/_symbol.py | 41 ++-
src/operator/numpy/np_delete_op-inl.h | 347 +++++++++++++++++++++
src/operator/numpy/np_delete_op.cc | 98 ++++++
.../numpy/{np_memory_op.cu => np_delete_op.cu} | 17 +-
.../python/unittest/test_numpy_interoperability.py | 22 ++
tests/python/unittest/test_numpy_op.py | 75 +++++
9 files changed, 704 insertions(+), 11 deletions(-)
create mode 100644 src/operator/numpy/np_delete_op-inl.h
create mode 100644 src/operator/numpy/np_delete_op.cc
copy src/operator/numpy/{np_memory_op.cu => np_delete_op.cu} (75%)
|