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

iblis pushed a change to branch ib/jl-runtime-features
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git.


 discard 6d9e429  update
 discard 271fed6  mx.isenabled
 discard 03698eb  2 space
 discard ec80b31  update to new API
 discard 7b1727a  Julia: add binding for runtime feature detection
     new 434a5fb  move choose_element_0index to operator (#14273)
     new 1363557  1.4 release (#14297)
     new 6152ffa  FIX: flaky test exponential generator (#14287)
     new 4d14a0b  Add scalaclean to make clean (#14322)
     new df7771b  Add int8 data loader (#14123)
     new 21f67bd  [clojure-package] improve docstrings in `image.clj` (#14307)
     new 780bddc  Optimize NMS (#14290)
     new 434726e  [DOC] Refine documentation of runtime feature detection 
(#14238)
     new 99bb06c  support long for mx.random.seed (#14314)
     new 7243806  Use cudnn for dropout by default (#14278)
     new 5065f13  fix SoftmaxOutput resource bug (#14302)
     new ef1c4ba  Fixed some typos in AvgPooling Docs (#14324)
     new 0f88f61  [clojure-package] fix docstrings in `normal.clj` (#14295)
     new 427b6d4  Fix shape inference pass (#14153)
     new d754da3  Relaxing type requirements for reshape_like op (#14325)
     new f2497aa  Updated news.md with the latest mkldnn submodule version 
(#14298)
     new 49d7fc6  Enhance gpu quantization (#14094)
     new d6eafca  Bypass ThreadedEngine in 
test_operator_gpu.py:test_convolution_multiple_streams. (#14338)
     new 111b881  Limit workspace for cudnnGet results (#14326)
     new 2df0660  Julia: add binding for runtime feature detection
     new ca6ac8a  update to new API
     new f6d13fb  2 space
     new 37ecb07  mx.isenabled
     new 1b5f894  update

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   (6d9e429)
            \
             N -- N -- N   refs/heads/ib/jl-runtime-features (1b5f894)

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 9355 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:
 Makefile                                           |   2 +
 NEWS.md                                            |   2 +-
 .../src/org/apache/clojure_mxnet/image.clj         |  76 ++++++-
 .../src/org/apache/clojure_mxnet/random.clj        |  70 ++++---
 .../test/org/apache/clojure_mxnet/random_test.clj  |   4 +-
 docs/_static/js/options.js                         |   5 +-
 docs/_static/mxnet-theme/index.html                |   6 +-
 docs/_static/mxnet-theme/navbar.html               |   4 +-
 docs/api/perl/io.md                                |   1 +
 docs/api/python/io/io.md                           |   1 +
 docs/api/python/libinfo/libinfo.md                 |  77 +++++--
 docs/install/build_from_source.md                  |   2 +-
 docs/install/download.md                           |   1 +
 docs/install/index.md                              |  59 ++++--
 docs/install/ubuntu_setup.md                       |   2 +-
 example/quantization/imagenet_inference.py         |  84 ++++++--
 include/mxnet/c_api.h                              |   4 +-
 perl-package/AI-MXNet/lib/AI/MXNet/IO.pm           |   1 +
 python/mxnet/gluon/nn/conv_layers.py               |   6 +-
 python/mxnet/random.py                             |   6 +-
 python/mxnet/runtime.py                            |  23 ++-
 src/executor/infer_graph_attr_pass.cc              |  76 ++++++-
 src/io/iter_image_recordio_2.cc                    |  55 ++++-
 src/ndarray/ndarray.cc                             |   5 -
 src/operator/contrib/bounding_box-common.h         | 118 +++++++++++
 src/operator/contrib/bounding_box-inl.cuh          | 223 +++++++++++++++++++++
 src/operator/contrib/bounding_box-inl.h            | 115 +++--------
 src/operator/nn/cudnn/cudnn_convolution-inl.h      |   8 +-
 src/operator/nn/dropout-inl.h                      |   2 +-
 .../quantization/mkldnn/mkldnn_quantize_v2-inl.h   |  31 ++-
 src/operator/quantization/quantize-inl.h           |   4 +
 src/operator/quantization/quantize_v2-inl.h        | 109 ++++++----
 src/operator/quantization/quantize_v2.cc           |   6 +
 src/operator/softmax_output-inl.h                  |   5 -
 src/operator/softmax_output.cc                     |   3 +
 src/operator/tensor/broadcast_reduce_op_index.cc   |   1 +
 src/operator/tensor/elemwise_unary_op_basic.cc     |  11 +-
 tests/cpp/include/test_op.h                        |   2 +-
 tests/python/gpu/test_operator_gpu.py              |  12 +-
 tests/python/quantization/test_quantization.py     |  10 +
 tests/python/train/test_dtype.py                   |  29 +++
 tests/python/unittest/test_operator.py             |  87 +++++++-
 tests/python/unittest/test_random.py               |  33 ++-
 tests/python/unittest/test_symbol.py               |  13 ++
 44 files changed, 1105 insertions(+), 289 deletions(-)
 create mode 100644 src/operator/contrib/bounding_box-common.h

Reply via email to