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

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


 discard bf99f27  [1.7] MXNet Extension PRs (#17623, #17569, #17762) (#18063)
     add 91d595a  bump up 1.x branch to 1.7.0 (#17741)
     add 3b83cd8  Bump up additional scala 1.x branch to 1.7.0 (#17765)
     add 21fc103  [Website 2.0] Nightly Build for v1.x (#17956)
     add db93398  Pinning rvm version to satisfy Jekyll build (#18016)
     add 0d3aa67  Workaround gnu_tls handshake error on Ubuntu 14.04 Nvidia 
Docker (#18044)
     add 6fa374b  [v1.x] Backport #17702 and #17872 to v1.x branch (#18038)
     add 50d6d7d  [mkldnn]Mkldnn bn opt backport from master to 1.7x (#18009)
     add 2cf7219  [v1.x] Update 3rdparty/mkldnn remote URL and pin to v1.3 
(#17972) (#18033)
     add 3f920ae  Optimize AddTakeGrad Tensor Sum (#17906) (#18045)
     add 2ccbcec  GPU gemms true fp16 (#17466) (#18023)
     add 1afdfce  [1.7] Backport MXNet Extension PRs (#17623, #17569, #17762) 
#18063 (#18069)
     add b56571d  [v1.x] backport #17900 "[MKLDNN] support using any format in 
pooling backward" (#18067)
     add 8cfc64a  No tensor cores for fp32 interleaved attention, remove div by 
8 restriction (#17994) (#18085)
     add 2e22b5e  refactor codes and add an option to skip/check weight's 
version to reduce overhead (#17707) (#18039)
     add 3835139  Add gelu fuse ops (#18082) (#18092)
     add 814530d  Cherry-pick of #17995 and #17937 to 1.x branch (#18041)

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (bf99f27)
            \
             N -- N -- N   refs/heads/v1.7.x (814530d)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .gitmodules                                        |   3 +-
 3rdparty/mkldnn                                    |   2 +-
 3rdparty/mshadow/mshadow/tensor_cpu-inl.h          |   9 +-
 CMakeLists.txt                                     |   1 +
 R-package/DESCRIPTION                              |   2 +-
 ci/docker/Dockerfile.build.ubuntu_cpu_jekyll       |   2 +-
 ci/docker/install/centos7_core.sh                  |  15 +-
 ci/docker/install/ubuntu_publish.sh                |   4 +
 ...website_full_pr => Jenkinsfile_website_nightly} |  11 +-
 contrib/clojure-package/examples/bert/project.clj  |   2 +-
 .../clojure-package/examples/captcha/project.clj   |   2 +-
 .../examples/cnn-text-classification/project.clj   |   2 +-
 contrib/clojure-package/examples/gan/project.clj   |   4 +-
 .../examples/imclassification/project.clj          |   2 +-
 .../examples/infer/imageclassifier/project.clj     |   2 +-
 .../examples/infer/objectdetector/project.clj      |   2 +-
 .../examples/infer/predictor/project.clj           |   2 +-
 .../clojure-package/examples/module/project.clj    |   2 +-
 .../examples/multi-label/project.clj               |   2 +-
 .../examples/neural-style/project.clj              |   4 +-
 .../examples/pre-trained-models/project.clj        |   2 +-
 .../clojure-package/examples/profiler/project.clj  |   2 +-
 contrib/clojure-package/examples/rnn/project.clj   |   2 +-
 .../clojure-package/examples/tutorial/project.clj  |   2 +-
 .../examples/visualization/project.clj             |   2 +-
 contrib/clojure-package/project.clj                |   2 +-
 docs/static_site/src/pages/api/faq/env_var.md      |   4 +
 .../docs/tutorials/mxnet_scala_on_intellij.md      |   4 +-
 include/mxnet/base.h                               |   2 +-
 julia/NEWS.md                                      |   3 +
 mkldnn.mk                                          |   1 +
 python/mxnet/gluon/rnn/rnn_layer.py                |   1 +
 python/mxnet/libinfo.py                            |   2 +-
 scala-package/README.md                            |  10 +-
 scala-package/mxnet-demo/java-demo/README.md       |   4 +-
 scala-package/mxnet-demo/java-demo/pom.xml         |   6 +-
 scala-package/mxnet-demo/scala-demo/pom.xml        |   2 +-
 scala-package/pom.xml                              |   2 +-
 snapcraft.yaml                                     |   2 +-
 src/executor/pointwise_fusion_pass.cc              |  14 ++
 src/operator/contrib/transformer.cu                |  83 ++++++--
 src/operator/fusion/fused_op-inl.h                 |  31 ++-
 src/operator/fusion/fused_op.cu                    |  43 ++++
 src/operator/linalg_impl.h                         |  53 ++++-
 src/operator/nn/mkldnn/mkldnn_base-inl.h           |   8 -
 src/operator/nn/mkldnn/mkldnn_batch_norm-inl.h     |  50 ++---
 src/operator/nn/mkldnn/mkldnn_pooling.cc           |  63 +++---
 src/operator/nn/mkldnn/mkldnn_rnn-inl.h            |  16 +-
 src/operator/nn/mkldnn/mkldnn_rnn.cc               |  43 ++--
 src/operator/rnn-inl.h                             |  33 ++-
 src/operator/rnn.cc                                |  44 ++--
 src/operator/rnn_impl.h                            |  48 +++--
 src/operator/subgraph/mkldnn/mkldnn_common.h       |   2 +-
 src/operator/subgraph/mkldnn/mkldnn_fc.cc          | 124 ++++++------
 src/operator/tensor/elemwise_sum.h                 |   2 +-
 tests/cpp/operator/mkldnn_test.cc                  |   2 +-
 tests/cpp/unittest.mk                              |   7 +-
 tests/python/gpu/test_fusion.py                    |  29 ++-
 tests/python/gpu/test_gluon_gpu.py                 |  21 ++
 tests/python/unittest/test_gluon_rnn.py            | 222 +++++++++++++++++----
 tests/python/unittest/test_operator.py             |  19 ++
 61 files changed, 781 insertions(+), 306 deletions(-)
 copy ci/jenkins/{Jenkinsfile_website_full_pr => Jenkinsfile_website_nightly} 
(90%)

Reply via email to