You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by la...@apache.org on 2019/10/10 04:34:38 UTC

[incubator-mxnet] branch revert-16304-cifix updated (e58b42f -> 463c55d)

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

lanking pushed a change to branch revert-16304-cifix
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git.


 discard e58b42f  Revert "add mkl installation temp fix (#16304)"
     add 8096421  Embedding gradient performance optimization on GPU (#16355)
     add 2c81a71  Change mailing list url in footer to point to instructions about how to subscribe instead (#16384)
     add 2127f75  Add instructions to report a security vulnerability (#16383)
     add 09285c8  Implements ldexp. (#15845)
     add 2df3282  Numpy Operators: Inner, Outer, vdot (#15846)
     add 295fc14  Numpy det and slogdet operators (#15861)
     add 4940ec0  Fix random op signature
     add df4125a  update NEWS.md and README.md (#16385)
     add 0bace55  fix choice signature
     add ec766d5  add raise test for shape
     add d5666ed  Round and sign straight-through-estimators C operators. (#16373)
     add 15ea40d  Add boolean ndarray (#15940)
     add 1d0d1e6  Faster Transpose 2D (#16104)
     add 9ff644b  Fix windows flakiness (#16415)
     add 463c55d  Revert "add mkl installation temp fix (#16304)"

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   (e58b42f)
            \
             N -- N -- N   refs/heads/revert-16304-cifix (463c55d)

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:
 3rdparty/mshadow/mshadow/base.h                    |  62 ++-
 CMakeLists.txt                                     |   6 +-
 Makefile                                           |   6 +-
 NEWS.md                                            |  24 +
 README.md                                          |   1 +
 ci/docker/runtime_functions.sh                     |   4 +-
 contrib/tvmop/__init__.py                          |   1 +
 contrib/tvmop/compile.py                           |  41 +-
 .../pycocotools => contrib/tvmop/core}/__init__.py |   2 +-
 contrib/tvmop/core/fromnumeric.py                  |  63 +++
 contrib/tvmop/core/umath.py                        | 122 +++++
 contrib/tvmop/opdef.py                             |   6 +-
 contrib/tvmop/utils.py                             |  16 +-
 docs/static_site/src/_includes/footer.html         |   3 +-
 docs/static_site/src/pages/api/faq/security.md     |  17 +
 include/mxnet/tensor_blob.h                        |   1 +
 python/mxnet/initializer.py                        |   8 +-
 python/mxnet/ndarray/ndarray.py                    |   6 +
 python/mxnet/ndarray/numpy/_op.py                  | 399 +++++++++++++++-
 python/mxnet/ndarray/numpy/random.py               |  22 +-
 python/mxnet/numpy/multiarray.py                   | 501 ++++++++++++++++++---
 python/mxnet/numpy/random.py                       |  12 +-
 python/mxnet/numpy/utils.py                        |   7 +-
 python/mxnet/numpy_op_signature.py                 |   7 +-
 python/mxnet/symbol/numpy/_symbol.py               | 426 ++++++++++++++++--
 python/mxnet/symbol/numpy/random.py                |  18 +-
 python/mxnet/test_utils.py                         |  17 +
 src/ndarray/ndarray.cc                             |   2 +-
 src/ndarray/ndarray_function.cc                    |   9 +
 src/ndarray/ndarray_function.cu                    |  10 +-
 src/operator/contrib/boolean_mask.cc               |   7 +-
 src/operator/contrib/boolean_mask.cu               |   4 +-
 src/operator/contrib/stes_op.cc                    |  84 ++++
 src/operator/contrib/stes_op.cu                    |  43 ++
 src/operator/contrib/stes_op.h                     |  33 ++
 src/operator/mshadow_op.h                          |  11 +
 src/operator/mxnet_op.h                            |  16 +
 src/operator/numpy/np_broadcast_reduce_op.h        |  21 +-
 src/operator/numpy/np_broadcast_reduce_op_value.cc |  71 +++
 src/operator/numpy/np_elemwise_broadcast_op.cc     | 284 +++++++++++-
 src/operator/numpy/np_elemwise_broadcast_op.cu     |  19 +
 src/operator/operator_tune.cc                      |  28 +-
 src/operator/random/sample_op.cc                   |   2 -
 .../tensor/elemwise_binary_broadcast_op_logic.cc   |   6 -
 .../tensor/elemwise_binary_scalar_op_logic.cc      |   6 -
 src/operator/tensor/elemwise_unary_op.h            |   2 +-
 src/operator/tensor/indexing_op.cu                 | 233 ++++++++++
 src/operator/tensor/init_op.h                      |  10 +-
 src/operator/tensor/matrix_op-inl.h                |  52 ++-
 src/operator/tvmop/op_module.cc                    |  27 +-
 src/operator/tvmop/op_module.h                     |  18 +-
 tests/python/unittest/test_contrib_stes_op.py      | 137 ++++++
 tests/python/unittest/test_exc_handling.py         |  15 +-
 tests/python/unittest/test_numpy_gluon.py          |  27 +-
 tests/python/unittest/test_numpy_ndarray.py        | 149 +++++-
 tests/python/unittest/test_numpy_op.py             | 299 +++++++++++-
 tests/python/unittest/test_operator.py             |   7 +
 57 files changed, 3170 insertions(+), 260 deletions(-)
 copy {example/ssd/dataset/pycocotools => contrib/tvmop/core}/__init__.py (95%)
 mode change 100755 => 100644
 create mode 100644 contrib/tvmop/core/fromnumeric.py
 create mode 100644 contrib/tvmop/core/umath.py
 create mode 100644 src/operator/contrib/stes_op.cc
 create mode 100644 src/operator/contrib/stes_op.cu
 create mode 100644 src/operator/contrib/stes_op.h
 create mode 100644 tests/python/unittest/test_contrib_stes_op.py