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 2021/03/31 19:37:13 UTC

[incubator-mxnet] branch master updated (cb4df36 -> 5e857b4)

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 cb4df36  [FFI] npx.pick, npx.convolution, npx.deconvolution (#20101)
     add 5e857b4  [FFI] npx.pooling, npx.dropout, npx.one_hot, npx.rnn (#20102)

No new revisions were added by this update.

Summary of changes:
 python/mxnet/base.py                               |   3 +-
 python/mxnet/ndarray/numpy_extension/_op.py        | 351 ++++++++++++++++++++-
 python/mxnet/numpy_extension/_op.py                | 319 ++++++++++++++++++-
 .../{npx_activation_op.cc => npx_dropout_op.cc}    |  60 ++--
 .../npx_one_hot_op.cc}                             |  44 ++-
 src/api/operator/numpy_extension/npx_pooling_op.cc | 182 +++++++++++
 src/api/operator/numpy_extension/npx_rnn_op.cc     | 140 ++++++++
 src/operator/nn/dropout-inl.h                      |  23 ++
 src/operator/nn/pooling-inl.h                      |  80 +++++
 src/operator/rnn-inl.h                             |  50 +++
 src/operator/tensor/indexing_op.h                  |  11 +
 11 files changed, 1220 insertions(+), 43 deletions(-)
 copy src/api/operator/numpy_extension/{npx_activation_op.cc => npx_dropout_op.cc} (57%)
 copy src/api/operator/{numpy/np_repeat_op.cc => numpy_extension/npx_one_hot_op.cc} (64%)
 create mode 100644 src/api/operator/numpy_extension/npx_pooling_op.cc
 create mode 100644 src/api/operator/numpy_extension/npx_rnn_op.cc