You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by sa...@apache.org on 2020/09/01 20:27:44 UTC

[incubator-mxnet] branch master updated (9268f89 -> 8379740)

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

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


    from 9268f89  Numpy pick large tensor fix (#19025)
     add 8379740  MXNet Extensions enhancements2 (#19016)

No new revisions were added by this update.

Summary of changes:
 CMakeLists.txt                                     |   19 +-
 config/linux_gpu.cmake                             |   16 +-
 example/extensions/lib_api/Makefile                |    2 +-
 example/extensions/lib_api/init_lib.cc             |    2 +-
 example/extensions/lib_custom_op/Makefile          |   11 +-
 example/extensions/lib_custom_op/gemm_lib.cc       |    2 +-
 example/extensions/lib_custom_op/relu_lib.cc       |  171 +++
 example/extensions/lib_custom_op/relu_lib.cu       |  173 +--
 example/extensions/lib_custom_op/relu_lib.h        |   90 ++
 .../extensions/lib_custom_op/test_transposecsr.py  |   24 +-
 .../lib_custom_op/test_transposerowsp.py           |   21 +-
 .../extensions/lib_custom_op/transposecsr_lib.cc   |    2 +-
 .../extensions/lib_custom_op/transposerowsp_lib.cc |    2 +-
 example/extensions/lib_pass/Makefile               |    2 +-
 example/extensions/lib_pass/pass_lib.cc            |    2 +-
 example/extensions/lib_subgraph/Makefile           |    2 +-
 example/extensions/lib_subgraph/subgraph_lib.cc    |    2 +-
 include/mxnet/c_api.h                              |    2 +-
 include/mxnet/lib_api.h                            | 1517 +++----------------
 python/mxnet/library.py                            |   19 +-
 src/c_api/c_api.cc                                 |   20 +-
 src/initialize.cc                                  |   12 +-
 src/lib_api.cc                                     | 1593 ++++++++++++++++++++
 23 files changed, 2150 insertions(+), 1556 deletions(-)
 create mode 100644 example/extensions/lib_custom_op/relu_lib.cc
 create mode 100644 example/extensions/lib_custom_op/relu_lib.h
 create mode 100644 src/lib_api.cc