You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by ta...@apache.org on 2019/10/17 08:26:19 UTC

[incubator-mxnet] branch mkldnn-v1.0 updated (b5cdabe -> ba3229b)

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

taolv pushed a change to branch mkldnn-v1.0
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git.


    from b5cdabe  [mkldnn-v1.0] Enable mkldnn cpp-test, copy op, concat op (#16503)
     add 1d4ede3  Add mask target generator operator for Mask-RCNN (#16268)
     add 8820220  Adds pip requirements file to nightly gpu ci image (#16472)
     add 1256976  Fix Nightly Tests for Binaries (#16451)
     add 812e504  fix autodoc for spurrious toggles (#16452)
     add 7c0000e  Fix dtype bug (#16467)
     add 9ab428e  [Doc] Update the download page with 1.5.1 release (#16442)
     add 6e0b1a5  [Numpy] Numpy compatible dstack (#15871)
     add ceebcaf  numpy eye op (#16132)
     add 8222979  Numpy compatible vsplit; minor changes to split (#15983)
     add 8562adc  add numpy op logspace (#15825)
     add 9681197  add numpy op bitwise_xor, hsplit, moveaxis, rot90 (#16257)
     add f9359c3  Fix flakey pylint CI failures (#16462)
     add 67e1e68  Aggregated zero grad (#16446)
     add b1932c0  Move MRCNNMaskTarget op to contrib (#16486)
     add 06438ab  Mxnet allclose (#14443)
     add 0c00a79  Fix optimizer bug for np attribute (#16494)
     add c2bbde7  Tests of NumPy interoperability (#16469)
     add ba3229b  Merge remote-tracking branch 'origin/master' into mkldnn-v1.0

No new revisions were added by this update.

Summary of changes:
 ci/docker/Dockerfile.build.ubuntu_nightly_gpu      |   1 +
 ci/other/pylintrc                                  |   7 +-
 docs/python_docs/_static/autodoc.js                |  34 +-
 .../src/_includes/get_started/get_started.html     |   6 +-
 .../src/_includes/get_started/pip_snippet.md       |   2 +-
 docs/static_site/src/pages/get_started/download.md |   1 +
 python/mxnet/_numpy_op_doc.py                      |  44 ++
 python/mxnet/gluon/parameter.py                    |  21 +-
 python/mxnet/ndarray/numpy/_op.py                  | 416 ++++++++++++-
 python/mxnet/numpy/multiarray.py                   | 392 +++++++++++-
 python/mxnet/numpy_dispatch_protocol.py            |   2 +
 python/mxnet/numpy_op_signature.py                 |   5 +-
 python/mxnet/optimizer/optimizer.py                |   2 +-
 python/mxnet/symbol/numpy/_symbol.py               | 362 ++++++++++-
 python/mxnet/test_utils.py                         | 188 ++++--
 src/operator/contrib/allclose_op-inl.h             | 160 +++++
 src/operator/contrib/allclose_op.cc                |  86 +++
 src/operator/contrib/allclose_op.cu                |  58 ++
 src/operator/contrib/mrcnn_mask_target-inl.h       | 132 ++++
 src/operator/contrib/mrcnn_mask_target.cu          | 278 +++++++++
 src/operator/contrib/reset_arrays-inl.h            |  92 +++
 src/operator/contrib/reset_arrays.cc               |  74 +++
 .../contrib/{multi_lars.cu => reset_arrays.cu}     |  18 +-
 src/operator/mshadow_op.h                          |   2 +
 src/operator/nn/concat-inl.h                       |  62 ++
 src/operator/numpy/np_elemwise_broadcast_op.cu     |   4 +
 src/operator/numpy/np_init_op.cc                   |  53 +-
 src/operator/numpy/np_init_op.cu                   |   6 +
 src/operator/numpy/np_init_op.h                    | 132 ++++
 src/operator/numpy/np_matrix_op-inl.h              | 367 ++++++++++++
 src/operator/numpy/np_matrix_op.cc                 | 268 ++++++++-
 src/operator/numpy/np_matrix_op.cu                 |  19 +
 src/operator/operator_tune.cc                      |   1 +
 src/operator/tensor/init_op.h                      |  40 +-
 src/operator/tensor/matrix_op-inl.h                | 115 ++--
 tests/python-pytest/onnx/mxnet_export_test.py      |   2 +-
 tests/python/gpu/test_gluon_gpu.py                 | 136 ++++-
 tests/python/gpu/test_gluon_model_zoo_gpu.py       |  14 +-
 tests/python/gpu/test_operator_gpu.py              |  59 +-
 tests/python/mkl/test_mkldnn.py                    |  12 +-
 tests/python/unittest/test_contrib_operator.py     |  58 ++
 tests/python/unittest/test_gluon.py                |  66 +-
 tests/python/unittest/test_gluon_contrib.py        |  21 +-
 tests/python/unittest/test_loss.py                 |  31 +-
 tests/python/unittest/test_ndarray.py              |  27 +-
 tests/python/unittest/test_numpy_gluon.py          |   9 +
 .../python/unittest/test_numpy_interoperability.py | 160 ++++-
 tests/python/unittest/test_numpy_ndarray.py        |  23 +
 tests/python/unittest/test_numpy_op.py             | 382 ++++++++++++
 tests/python/unittest/test_operator.py             | 663 +++++++++------------
 tests/python/unittest/test_random.py               |  16 +-
 tests/python/unittest/test_sparse_operator.py      |   4 +-
 tests/python/unittest/test_subgraph.py             |   7 -
 tests/utils/notebook_test/__init__.py              |   2 +-
 54 files changed, 4439 insertions(+), 703 deletions(-)
 create mode 100644 src/operator/contrib/allclose_op-inl.h
 create mode 100644 src/operator/contrib/allclose_op.cc
 create mode 100644 src/operator/contrib/allclose_op.cu
 create mode 100644 src/operator/contrib/mrcnn_mask_target-inl.h
 create mode 100644 src/operator/contrib/mrcnn_mask_target.cu
 create mode 100644 src/operator/contrib/reset_arrays-inl.h
 create mode 100644 src/operator/contrib/reset_arrays.cc
 copy src/operator/contrib/{multi_lars.cu => reset_arrays.cu} (69%)