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 2020/07/15 22:04:11 UTC

[incubator-mxnet] branch master updated (12ec046 -> e2366e9)

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 12ec046  Migrate from private to public jetson toolchain files (#18677)
     add e2366e9  Refactor scope functionality in Python API (#18619)

No new revisions were added by this update.

Summary of changes:
 ci/docker/Dockerfile.build.centos7                |  18 +-
 ci/docker/install/requirements                    |   2 +
 example/profiler/profiler_matmul.py               |   4 +-
 include/mxnet/c_api.h                             |   8 +
 python/mxnet/attribute.py                         |  46 ++---
 python/mxnet/base.py                              |  63 -------
 python/mxnet/context.py                           |  49 ++----
 python/mxnet/gluon/block.py                       | 204 ++++++++++------------
 python/mxnet/gluon/contrib/estimator/estimator.py |   2 +-
 python/mxnet/gluon/contrib/nn/basic_layers.py     |   3 +-
 python/mxnet/gluon/parameter.py                   |  19 +-
 python/mxnet/gluon/trainer.py                     |  13 +-
 python/mxnet/name.py                              |  53 ++----
 python/mxnet/optimizer/updater.py                 |   4 +-
 python/mxnet/profiler.py                          |  60 ++-----
 python/mxnet/symbol/contrib.py                    |   4 +-
 python/mxnet/symbol/numpy/_symbol.py              |   2 +-
 python/mxnet/symbol/register.py                   |  28 +--
 python/mxnet/symbol/symbol.py                     |  39 ++++-
 python/mxnet/test_utils.py                        |  23 +--
 python/setup.py                                   |   2 +-
 src/c_api/c_api_symbolic.cc                       |  14 ++
 tests/python/gpu/test_gluon_gpu.py                |  14 +-
 tests/python/gpu/test_profiler_gpu.py             |   2 +-
 tests/python/mkl/test_mkldnn.py                   |   4 +-
 tests/python/unittest/onnx/backend_test.py        |  51 +++---
 tests/python/unittest/onnx/mxnet_export_test.py   |  10 +-
 tests/python/unittest/onnx/test_node.py           |   8 +-
 tests/python/unittest/test_autograd.py            |   1 +
 tests/python/unittest/test_deferred_compute.py    |   3 +-
 tests/python/unittest/test_gluon.py               |  68 ++++----
 tests/python/unittest/test_gluon_contrib.py       |   4 +-
 tests/python/unittest/test_gluon_rnn.py           |  63 +++----
 tests/python/unittest/test_gluon_trainer.py       |  15 ++
 tests/python/unittest/test_memory_opt.py          |   5 -
 tests/python/unittest/test_numpy_default_dtype.py |   5 -
 tests/python/unittest/test_numpy_op.py            |   9 +-
 tests/python/unittest/test_profiler.py            |   4 +-
 tests/python/unittest/test_sparse_ndarray.py      |  13 +-
 tests/python/unittest/test_thread_local.py        | 153 +++++++---------
 40 files changed, 466 insertions(+), 626 deletions(-)