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

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


    omit 38e8828  [IR-Patch] IR Bridge (#16290)
     add 3244a7a  Julia: add API docs back (#16363)
     add b6f3235  Fix nightly scala pipeline (#16362)
     add 09ae7df  remove redundant branch name (#16372)
     add 626fc32  Disable Pylint false error in numpy_op_signature  (#16370)
     add 916fbf2  boolean_mask_assign operator for future boolean indexing 
(#16361)
     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)
     new d3d2b10  [IR-Patch] IR Bridge (#16290)

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   (38e8828)
            \
             N -- N -- N   refs/heads/ir-patch (d3d2b10)

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:
 NEWS.md                                        |  24 ++
 README.md                                      |   1 +
 ci/Jenkinsfile_utils.groovy                    |   4 +-
 ci/docker/Dockerfile.publish.ubuntu1604_cpu    |   2 +
 ci/docker/Dockerfile.publish.ubuntu1604_gpu    |   2 +
 docs/static_site/src/_includes/footer.html     |   3 +-
 docs/static_site/src/pages/api/faq/security.md |  17 +
 julia/docs/src/api/ndarray.md                  |  18 +-
 julia/docs/src/api/symbolic-node.md            |  11 +-
 python/mxnet/_numpy_op_doc.py                  | 122 ++++++
 python/mxnet/initializer.py                    |   8 +-
 python/mxnet/ndarray/numpy/_op.py              | 203 ++++++++-
 python/mxnet/ndarray/numpy/random.py           |  18 +-
 python/mxnet/numpy/multiarray.py               | 187 ++++++++-
 python/mxnet/numpy/random.py                   |   8 +-
 python/mxnet/numpy_op_signature.py             |   1 -
 python/mxnet/symbol/numpy/_symbol.py           | 182 +++++++-
 python/mxnet/symbol/numpy/random.py            |  13 +-
 src/operator/mshadow_op.h                      |  11 +
 src/operator/numpy/np_boolean_mask_assign.cc   | 270 ++++++++++++
 src/operator/numpy/np_boolean_mask_assign.cu   | 229 ++++++++++
 src/operator/numpy/np_broadcast_reduce_op.h    |   9 +
 src/operator/numpy/np_elemwise_broadcast_op.cc |  37 ++
 src/operator/numpy/np_elemwise_broadcast_op.cu |  19 +
 src/operator/operator_tune.cc                  |   5 +
 src/operator/random/sample_op.cc               |   2 -
 src/operator/tensor/indexing_op.cu             | 233 +++++++++++
 src/operator/tensor/la_op.cc                   |   2 +
 src/operator/tensor/la_op.cu                   |   2 +
 src/operator/tensor/la_op.h                    |   7 +-
 tests/python/unittest/test_exc_handling.py     |  15 +-
 tests/python/unittest/test_numpy_gluon.py      |  15 +-
 tests/python/unittest/test_numpy_op.py         | 557 +++++++++++++++++++++----
 33 files changed, 2095 insertions(+), 142 deletions(-)
 create mode 100644 src/operator/numpy/np_boolean_mask_assign.cc
 create mode 100644 src/operator/numpy/np_boolean_mask_assign.cu

Reply via email to