You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by ha...@apache.org on 2020/03/05 06:07:33 UTC

[incubator-mxnet] branch master updated (aba4008 -> 938b35b)

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 aba4008  [CI] Run python unittests on OS X with Github Actions (#17771)
     add 938b35b  [Numpy] FFI for cumsum and add (#17747)

No new revisions were added by this update.

Summary of changes:
 include/mxnet/runtime/c_runtime_api.h              |  13 +--
 include/mxnet/runtime/packed_func.h                |  36 ++-----
 src/lang/ir.cc => include/mxnet/runtime/py_arg.h   |  27 +++--
 python/mxnet/_ffi/_ctypes/function.py              |   7 +-
 python/mxnet/_ffi/_ctypes/types.py                 |  16 ++-
 python/mxnet/_ffi/_cython/base.pxi                 |  13 +--
 python/mxnet/_ffi/_cython/function.pxi             |  18 +++-
 python/mxnet/_numpy_op_doc.py                      |  51 ----------
 python/mxnet/ndarray/numpy/_op.py                  |  58 ++++++++++-
 python/mxnet/numpy/multiarray.py                   |  57 ++++++++++-
 python/mxnet/symbol/numpy/_symbol.py               |  39 +++++++-
 .../operator/numpy/{np_init_op.cc => np_cumsum.cc} |  46 +++++----
 .../operator/numpy/np_elemwise_broadcast_op.cc}    |  23 +++--
 src/api/operator/numpy/np_init_op.cc               |   5 +-
 src/api/operator/numpy/np_tensordot_op.cc          |  11 ++-
 .../cudnn_algoreg.cc => api/operator/op_utils.cc}  |  56 ++++++-----
 .../np_memory_op.cu => api/operator/op_utils.h}    |  19 ++--
 src/api/operator/ufunc_helper.cc                   | 110 +++++++++++++++++++++
 src/{lang/ir.cc => api/operator/ufunc_helper.h}    |  25 ++---
 src/api/operator/utils.cc                          |  22 +++++
 src/api/operator/utils.h                           |  21 +---
 src/operator/numpy/np_cumsum-inl.h                 |  13 +++
 src/operator/numpy/np_cumsum.cc                    |   7 +-
 src/operator/numpy/np_cumsum.cu                    |   4 +-
 24 files changed, 472 insertions(+), 225 deletions(-)
 copy src/lang/ir.cc => include/mxnet/runtime/py_arg.h (70%)
 copy src/api/operator/numpy/{np_init_op.cc => np_cumsum.cc} (55%)
 copy src/{lang/expr.cc => api/operator/numpy/np_elemwise_broadcast_op.cc} (60%)
 copy src/{operator/nn/cudnn/cudnn_algoreg.cc => api/operator/op_utils.cc} (55%)
 copy src/{operator/numpy/np_memory_op.cu => api/operator/op_utils.h} (75%)
 create mode 100644 src/api/operator/ufunc_helper.cc
 copy src/{lang/ir.cc => api/operator/ufunc_helper.h} (65%)