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

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


 discard be041d2  numpy op doc: max, min, prod (#16506)
     add 9fecfbb  Add test pipeline for USE_TVM_OP=OFF on Unix (#16450)
     add b583059  Numpy dispatch test of ...... (#16422)
     add 149e034  typo fix in r doc lstm tutorial (#16546)
     add fc81c64  Correct Google Analytics Tracker (#16490)
     add ffec31f  Aggregated adamw update (#16398)
     add 5b67a69  try to fix block (#16465)
     add c1d02ce  setup and concatenate, copy, expand_dims, expm1 (#16493)
     add cdfaf39  add sum for boolean type in mainline (#16436)
     new 79c08d3  numpy op doc: max, min, prod (#16506)

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   (be041d2)
            \
             N -- N -- N   refs/heads/numpy_1_6_prs (79c08d3)

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.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 3rdparty/mshadow/mshadow/base.h                    |  10 +
 ci/docker/runtime_functions.sh                     |  71 ++
 ci/jenkins/Jenkins_steps.groovy                    |  75 ++
 ci/jenkins/Jenkinsfile_unix_cpu                    |   4 +-
 ci/jenkins/Jenkinsfile_unix_gpu                    |   9 +-
 docs/python_docs/_static/google_analytics.js       |   2 +-
 .../pages/api/r/docs/tutorials/multi_dim_lstm.md   |   2 +-
 python/mxnet/gluon/block.py                        | 110 ++-
 python/mxnet/ndarray/contrib.py                    |  56 +-
 python/mxnet/ndarray/numpy/_op.py                  |  44 +-
 python/mxnet/numpy/multiarray.py                   |  31 +-
 python/mxnet/numpy/utils.py                        |   4 +-
 python/mxnet/numpy_dispatch_protocol.py            |  18 +-
 python/mxnet/symbol/numpy/_symbol.py               |  14 +-
 src/operator/contrib/adamw-inl.h                   | 368 ++++++++--
 src/operator/contrib/adamw.cc                      | 166 ++++-
 src/operator/contrib/adamw.cu                      |  34 +-
 src/operator/mxnet_op.h                            |  22 +-
 src/operator/numpy/np_broadcast_reduce_op.h        |   4 +-
 src/operator/tensor/broadcast_reduce_op.h          |   2 +-
 tests/python/gpu/test_gluon_gpu.py                 |  15 +
 tests/python/gpu/test_operator_gpu.py              |   1 +
 tests/python/unittest/test_contrib_optimizer.py    | 236 ++++---
 tests/python/unittest/test_gluon.py                |  44 ++
 .../python/unittest/test_numpy_interoperability.py | 767 +++++++++++++++++++--
 tests/python/unittest/test_numpy_op.py             |  13 +-
 26 files changed, 1803 insertions(+), 319 deletions(-)

Reply via email to