You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by zh...@apache.org on 2021/04/20 22:51:27 UTC

[incubator-mxnet] branch master updated (7dba11a -> 3e4b121)

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

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


    from 7dba11a  doc add relu (#20193)
     add 3e4b121  [FFI] part4: npx.embedding, npx.topk, npx.layer_norm, npx.leaky_relu (#20105)

No new revisions were added by this update.

Summary of changes:
 python/mxnet/base.py                               |   3 +-
 python/mxnet/ndarray/numpy_extension/_op.py        | 288 ++++++++++++++++++++-
 python/mxnet/numpy_extension/_op.py                | 267 ++++++++++++++++++-
 ...x_fully_connected_op.cc => npx_embedding_op.cc} |  42 ++-
 .../{npx_batch_norm_op.cc => npx_layer_norm_op.cc} |  64 ++---
 .../{npx_batch_norm_op.cc => npx_leaky_relu_op.cc} |  91 ++++---
 .../{npx_batch_norm_op.cc => npx_topk_op.cc}       |  83 +++---
 src/operator/leaky_relu-inl.h                      |  31 +++
 src/operator/nn/layer_norm-inl.h                   |  11 +-
 src/operator/tensor/indexing_op.h                  |  11 +
 src/operator/tensor/ordering_op-inl.h              |  29 +++
 tests/python/unittest/test_numpy_gluon.py          |  53 ++++
 12 files changed, 832 insertions(+), 141 deletions(-)
 copy src/api/operator/numpy_extension/{npx_fully_connected_op.cc => npx_embedding_op.cc} (70%)
 copy src/api/operator/numpy_extension/{npx_batch_norm_op.cc => npx_layer_norm_op.cc} (62%)
 copy src/api/operator/numpy_extension/{npx_batch_norm_op.cc => npx_leaky_relu_op.cc} (53%)
 copy src/api/operator/numpy_extension/{npx_batch_norm_op.cc => npx_topk_op.cc} (52%)