You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by an...@apache.org on 2018/06/14 23:20:47 UTC

[incubator-mxnet] branch v1.2.0 updated (a48480b -> 62a47a7)

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

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


    from a48480b  [maven-release-plugin] prepare release mxnet-parent_2.11-1.2.0
     add c2bfcf0  Fix test_sparse_mathematical_core sensitivity to scipy v1.1 (#10961) (#11175)
     add 60dff17  changes made to publish to maven (#11147)
     add 73d3445  docs build update for v1.2.1 (#11211)
     add fc7070a  [MXNET-408] [WIP] inplace ReLU activation (#10847)
     add 9a5f882  bump version for python & cpp
     add 0aa85b8  make slice operator 20x faster on GPU (#11124)
     add 546a233  [MXNET-491] Use depthwise convolution by cuDNNv7 if available, updated version (#11076) (#11233)
     add bc9a2d2  Add Windows MKLDNN Building Instruction (#10613)
     add db24cc0  [MXNET-33] SSD example not working with mkl-dnn (#10021)
     add 162cc78  add unittest for gluon mkldnn ndarray slice computation
     add 4dcdb17  [MXNET-362] ensure same mkldnn engine is used for consistency (#10616)
     add 1647b70  Add more gluon computation on MKLDNN with memory operation(slice, reshape etc.) (#10764)
     add 18d239c  [MXNET-365] handle inplace in mkldnn FallBackCompute (#10591)
     add 0111a36  Fix a bug in getting MKLDNN memory (#10731)
     add be7f358  fix a bug in cudnn softmax activation. (#10918)
     add 22966a0  handle NDArray slice properly for mkldnn layout
     add 9e97a96  invalidate MKLDNN memory for reused NDArrays. (#10706)
     add dfc847f  handle fallback correctly for write inplace when the array is MKLDNN. (#10651)
     add 62a47a7  Fix bugs in MKLDNN. (#10979)

No new revisions were added by this update.

Summary of changes:
 CMakeLists.txt                                     |    8 +-
 Jenkinsfile                                        |   21 +-
 MKL_README.md                                      |   96 +-
 Makefile                                           |   14 +-
 ci/docker/install/ubuntu_caffe.sh                  |   18 +-
 ci/docker/install/ubuntu_core.sh                   |   22 +-
 ci/docker/install/ubuntu_docs.sh                   |   21 +-
 ci/docker/install/ubuntu_scala.sh                  |   14 +-
 ci/docker/runtime_functions.sh                     |   26 +
 docs/Jenkinsfile                                   |   81 ++
 docs/build_version_doc/README.md                   |  169 ++-
 docs/{ => build_version_doc/artifacts}/.htaccess   |    0
 docs/build_version_doc/artifacts/0.12.0.index.html | 1241 ++++++++++++++++++
 docs/build_version_doc/artifacts/1.0.0.index.html  | 1302 +++++++++++++++++++
 docs/build_version_doc/artifacts/1.1.0.index.html  | 1338 +++++++++++++++++++
 docs/build_version_doc/artifacts/1.2.0.index.html  | 1338 +++++++++++++++++++
 .../artifacts}/index.html                          |   15 +-
 docs/build_version_doc/artifacts/master.index.html | 1371 ++++++++++++++++++++
 docs/build_version_doc/build_all_version.sh        |   18 +-
 docs/build_version_doc/update_all_version.sh       |   55 +-
 docs/install/windows_setup.md                      |    4 +-
 include/mxnet/base.h                               |    2 +-
 python/mxnet/libinfo.py                            |    2 +-
 scala-package/assembly/linux-x86_64-cpu/pom.xml    |   39 +-
 scala-package/assembly/linux-x86_64-gpu/pom.xml    |   36 +-
 scala-package/assembly/osx-x86_64-cpu/pom.xml      |   36 +-
 scala-package/assembly/pom.xml                     |    2 +-
 scala-package/core/pom.xml                         |    6 +-
 scala-package/dev/compile-mxnet-backend.sh         |  107 ++
 scala-package/examples/pom.xml                     |    6 +-
 scala-package/infer/pom.xml                        |    4 +-
 scala-package/init-native/linux-x86_64/pom.xml     |    4 +-
 scala-package/init-native/osx-x86_64/pom.xml       |    4 +-
 scala-package/init-native/pom.xml                  |    2 +-
 scala-package/init/pom.xml                         |   50 +-
 scala-package/macros/pom.xml                       |    6 +-
 scala-package/native/linux-x86_64-cpu/pom.xml      |    4 +-
 scala-package/native/linux-x86_64-gpu/pom.xml      |    4 +-
 scala-package/native/osx-x86_64-cpu/pom.xml        |    4 +-
 scala-package/native/pom.xml                       |    2 +-
 scala-package/pom.xml                              |   13 +-
 scala-package/spark/pom.xml                        |    4 +-
 snapcraft.yaml                                     |    2 +-
 src/common/exec_utils.h                            |   15 +-
 src/executor/attach_op_execs_pass.cc               |   16 +-
 src/imperative/imperative_utils.h                  |   23 +-
 src/ndarray/ndarray.cc                             |  171 ++-
 src/operator/nn/activation-inl.h                   |  148 +--
 src/operator/nn/activation.cc                      |   50 +-
 src/operator/nn/activation.cu                      |   39 +-
 src/operator/nn/convolution.cu                     |   10 +-
 src/operator/nn/cudnn/cudnn_activation-inl.h       |    3 +
 src/operator/nn/cudnn/cudnn_convolution-inl.h      |   92 ++
 .../nn/cudnn/cudnn_softmax_activation-inl.h        |   13 +-
 src/operator/nn/mkldnn/mkldnn_act.cc               |    2 +
 src/operator/nn/mkldnn/mkldnn_base-inl.h           |   39 +-
 src/operator/nn/mkldnn/mkldnn_base.cc              |   30 +-
 src/operator/nn/mkldnn/mkldnn_copy.cc              |    8 +-
 src/operator/nn/mkldnn/mkldnn_pooling-inl.h        |    6 +
 src/operator/nn/mkldnn/mkldnn_sum.cc               |   22 +-
 src/operator/tensor/elemwise_binary_op_basic.cc    |   12 +-
 src/operator/tensor/elemwise_unary_op_basic.cc     |    2 +-
 src/operator/tensor/indexing_op.h                  |    1 -
 src/operator/tensor/matrix_op-inl.h                |  130 +-
 tests/cpp/include/test_core_op.h                   |   10 +-
 tests/cpp/operator/mkldnn.cc                       |  565 ++++++++
 tests/python/gpu/test_gluon_model_zoo_gpu.py       |   19 +-
 tests/python/gpu/test_operator_gpu.py              |   40 +-
 .../data/test_mkldnn_test_mkldnn_model_model1.json |  770 +++++++++++
 tests/python/mkl/test_mkldnn.py                    |  217 ++++
 tests/python/mkl/test_mkldnn_install.py            |   56 +
 tests/python/unittest/test_operator.py             |   42 +
 tests/python/unittest/test_sparse_operator.py      |   17 +-
 73 files changed, 9592 insertions(+), 487 deletions(-)
 create mode 100644 docs/Jenkinsfile
 rename docs/{ => build_version_doc/artifacts}/.htaccess (100%)
 create mode 100644 docs/build_version_doc/artifacts/0.12.0.index.html
 create mode 100644 docs/build_version_doc/artifacts/1.0.0.index.html
 create mode 100644 docs/build_version_doc/artifacts/1.1.0.index.html
 create mode 100644 docs/build_version_doc/artifacts/1.2.0.index.html
 copy docs/{_static/mxnet-theme => build_version_doc/artifacts}/index.html (86%)
 create mode 100644 docs/build_version_doc/artifacts/master.index.html
 create mode 100755 scala-package/dev/compile-mxnet-backend.sh
 create mode 100644 tests/python/mkl/data/test_mkldnn_test_mkldnn_model_model1.json
 create mode 100644 tests/python/mkl/test_mkldnn.py
 create mode 100644 tests/python/mkl/test_mkldnn_install.py

-- 
To stop receiving notification emails like this one, please contact
anirudh2290@apache.org.