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 b72d195 skipping flaky tests randint,log_softmax. Skipped topk due to
increased memory footprint (#17410)
add 765ba32 quantile/percentile (#17234)
No new revisions were added by this update.
Summary of changes:
python/mxnet/ndarray/numpy/_op.py | 157 +++++++++++-
python/mxnet/numpy/multiarray.py | 152 +++++++++++-
python/mxnet/numpy_dispatch_protocol.py | 2 +
python/mxnet/symbol/numpy/_symbol.py | 110 ++++++++-
src/operator/numpy/np_percentile_op-inl.h | 272 +++++++++++++++++++++
src/operator/numpy/np_percentile_op.cc | 106 ++++++++
src/operator/numpy/np_percentile_op.cu | 54 ++++
src/operator/tensor/ordering_op-inl.h | 196 +++++++++++++++
.../python/unittest/test_numpy_interoperability.py | 57 +++++
tests/python/unittest/test_numpy_op.py | 91 +++++++
10 files changed, 1192 insertions(+), 5 deletions(-)
create mode 100644 src/operator/numpy/np_percentile_op-inl.h
create mode 100644 src/operator/numpy/np_percentile_op.cc
create mode 100644 src/operator/numpy/np_percentile_op.cu