You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by li...@apache.org on 2020/04/24 06:51:42 UTC

[incubator-mxnet] branch master updated (6972b98 -> 440a44a)

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

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


    from 6972b98  add bnrelu bf16 into amp list (#18155)
     add 440a44a  add: numpy op fill_diagonal (#18049)

No new revisions were added by this update.

Summary of changes:
 python/mxnet/ndarray/numpy/_op.py                  |  95 ++++++++++-
 python/mxnet/numpy/multiarray.py                   |  90 ++++++++++-
 ...{np_nan_to_num_op.cc => np_fill_diagonal_op.cc} |  37 ++---
 src/operator/numpy/np_fill_diagonal_op-inl.h       | 175 +++++++++++++++++++++
 .../{np_triu_op.cc => np_fill_diagonal_op.cc}      |  43 +++--
 .../{np_interp_op.cu => np_fill_diagonal_op.cu}    |  13 +-
 tests/python/unittest/test_numpy_op.py             |  45 ++++++
 7 files changed, 442 insertions(+), 56 deletions(-)
 copy src/api/operator/numpy/{np_nan_to_num_op.cc => np_fill_diagonal_op.cc} (65%)
 create mode 100644 src/operator/numpy/np_fill_diagonal_op-inl.h
 copy src/operator/numpy/{np_triu_op.cc => np_fill_diagonal_op.cc} (53%)
 copy src/operator/numpy/{np_interp_op.cu => np_fill_diagonal_op.cu} (79%)