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 9337137 For mxnet-validation pipeline, require sanity build to
complete successfully before running other build pipelines. (#17999)
add 7bef85e [Numpy] Add ffi for np.sum, np.std, np.var, np.average and
np.histogram (#17866)
No new revisions were added by this update.
Summary of changes:
benchmark/python/ffi/benchmark_ffi.py | 5 +
include/mxnet/runtime/ffi_helper.h | 18 ++
include/mxnet/runtime/object.h | 1 +
python/mxnet/_ffi/_cython/convert.pxi | 6 +
python/mxnet/_ffi/node_generic.py | 2 +
python/mxnet/_numpy_op_doc.py | 92 ---------
python/mxnet/ndarray/numpy/_op.py | 114 ++++++++++-
python/mxnet/numpy/multiarray.py | 104 +++++++++-
python/mxnet/symbol/numpy/_symbol.py | 51 ++++-
python/mxnet/symbol/numpy/linalg.py | 8 +-
src/api/_api_internal/_api_internal.cc | 10 +
src/api/operator/numpy/np_bincount_op.cc | 4 +-
.../operator/numpy/np_broadcast_reduce_op_value.cc | 67 ++++++-
src/api/operator/numpy/np_cumsum.cc | 4 +-
.../{random/np_pareto_op.cc => np_histogram_op.cc} | 79 ++++----
src/api/operator/numpy/np_moments_op.cc | 209 +++++++++++++++++++++
src/api/operator/numpy/np_tensordot_op.cc | 4 +-
src/api/operator/utils.h | 10 +
src/operator/numpy/np_broadcast_reduce_op.h | 32 +++-
src/operator/numpy/np_broadcast_reduce_op_value.cc | 22 +--
src/operator/numpy/np_broadcast_reduce_op_value.cu | 4 +-
src/operator/tensor/histogram-inl.h | 42 +++--
22 files changed, 702 insertions(+), 186 deletions(-)
copy src/api/operator/numpy/{random/np_pareto_op.cc => np_histogram_op.cc}
(50%)
create mode 100644 src/api/operator/numpy/np_moments_op.cc