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 2019/05/26 21:46:32 UTC

[incubator-mxnet] branch v1.5.x updated (136a5df -> 01cf29d)

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

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


    from 136a5df  GPU RNN to use TempSpace resource for workspace. (#15056)
     add 49ae15b  Restore save/load ndarray to 1.4.1 (#15073)
     add f689042  [MXNET-1382] Add the index_array operator (#14638)
     add 7edd69e  Rename np_compat to np_shape (#15063)
     add 01cf29d  Fix typo in amalgamation README.md (TREAD->THREAD) (#15058)

No new revisions were added by this update.

Summary of changes:
 CONTRIBUTORS.md                                    |   1 +
 amalgamation/README.md                             |   8 +-
 docs/api/python/ndarray/contrib.md                 |   1 +
 docs/api/python/symbol/contrib.md                  |   1 +
 include/mxnet/c_api.h                              |   6 +-
 include/mxnet/imperative.h                         |  14 +-
 python/mxnet/__init__.py                           |   3 +-
 python/mxnet/base.py                               | 140 +-------------
 python/mxnet/contrib/amp/lists/symbol.py           |   1 +
 python/mxnet/symbol/symbol.py                      |   5 +-
 python/mxnet/util.py                               | 201 +++++++++++++++++++++
 .../src/main/scala/org/apache/mxnet/LibInfo.scala  |   4 +-
 .../main/scala/org/apache/mxnet/NumpyScope.scala   |  16 +-
 .../src/main/scala/org/apache/mxnet/Symbol.scala   |   2 +-
 .../scala/org/apache/mxnet/NumpyScopeSuite.scala   |   8 +-
 .../main/native/org_apache_mxnet_native_c_api.cc   |  12 +-
 .../main/native/org_apache_mxnet_native_c_api.h    |   8 +-
 src/c_api/c_api.cc                                 |   4 +-
 src/c_api/c_api_executor.cc                        |   4 +-
 src/c_api/c_api_ndarray.cc                         |   8 +-
 src/c_api/c_api_symbolic.cc                        |   4 +-
 src/executor/infer_graph_attr_pass.cc              |   4 +-
 src/imperative/imperative.cc                       |   4 +-
 src/imperative/imperative_utils.h                  |   2 +-
 src/ndarray/ndarray.cc                             |  11 +-
 src/operator/contrib/index_array-inl.h             | 103 +++++++++++
 src/operator/contrib/index_array.cc                | 172 ++++++++++++++++++
 src/operator/contrib/index_array.cu                |  85 +++++++++
 src/operator/tensor/init_op.h                      |   2 +-
 tests/python/gpu/test_operator_gpu.py              |   4 +-
 tests/python/unittest/test_infer_shape.py          |  14 +-
 tests/python/unittest/test_ndarray.py              |  16 +-
 tests/python/unittest/test_operator.py             |  88 +++++++--
 33 files changed, 734 insertions(+), 222 deletions(-)
 create mode 100644 src/operator/contrib/index_array-inl.h
 create mode 100644 src/operator/contrib/index_array.cc
 create mode 100644 src/operator/contrib/index_array.cu