This is an automated email from the ASF dual-hosted git repository.
reminisce pushed a change to branch numpy
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git.
discard 2153b86 [Do not review] [Do not merge] New numpy-compatible sum
(#14739)
new 014ca13 [DOC] Update ubuntu install instructions from source (#14534)
new 8604c3c [Mxnet-1397] Support symbolic api for requantize and
dequantize (#14749)
new 8cae72e julia/ndarray: fix flaky test cases for `clamp` (#14776)
new 587d480 Use DEFAULT macro in C APIs (#14767)
new 22377ed Fix GELU backward possible NaN (#14782)
new acf53fd Mention additional language bindings and add links (#14798)
new 3d3803e Updates python setup.py for recent license changes (#14778)
new 97e09f2 Improve CMake handling of sse2 and sse3 (#14757)
new 6aeb97e change mxnet_option behavior (#14743)
new 680bade Use correct stash name when running nightly tests (#14809)
new 5dd9fa2 [clojure][generator] ndarray/symbol api random merged (#14800)
new 369b66d Improve cached_op performance for static mode (#14785)
new 40e3d7c data preparation file moved in example (#14781)
new 6cbc273 Scala/Java Predict API fix #14756 (#14804)
new 003800c clean up submodule (#14645)
new 6c60025 [MKLDNN]Refactor requantize to speed up execution (#14608)
new c18381d [MXNET-1398] Enable zero-copy from numpy to MXNet NDArray
(#14733)
new 64287dd Speed up SequenceReverse (#14627)
new cc22cb8 [Do not review] [Do not merge] New numpy-compatible sum
(#14739)
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 (2153b86)
\
N -- N -- N refs/heads/numpy (cc22cb8)
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 9537 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:
CMakeLists.txt | 16 +-
CONTRIBUTORS.md | 1 +
README.md | 2 +-
cmake/Utils.cmake | 2 +-
contrib/clojure-package/src/dev/generator.clj | 298 ++++++++++++++-------
.../src/org/apache/clojure_mxnet/ndarray_api.clj | 8 +-
.../{ndarray_api.clj => ndarray_random_api.clj} | 10 +-
.../{symbol_api.clj => symbol_random_api.clj} | 6 +-
.../clojure-package/test/dev/generator_test.clj | 47 +++-
.../test/good-test-ndarray-random-api.clj | 95 +++++++
.../test/good-test-symbol-random-api.clj | 118 ++++++++
.../test/test-ndarray-random-api.clj | 95 +++++++
.../test/test-symbol-random-api.clj | 118 ++++++++
docs/install/ubuntu_setup.md | 97 +++++--
example/gluon/{super_resolution => }/data.py | 0
include/mxnet/c_api.h | 19 +-
julia/test/unittest/ndarray.jl | 22 +-
python/mxnet/ndarray/ndarray.py | 107 +++++++-
.../scala/org/apache/mxnet/module/BaseModule.scala | 17 +-
.../java/org/apache/mxnet/javaapi/NDArrayTest.java | 4 +-
.../test/scala/org/apache/mxnet/ModuleSuite.scala | 28 ++
.../mxnetexamples/javaapi/infer/bert/BertQA.java | 6 +-
.../scala/org/apache/mxnet/APIDocGenerator.scala | 28 +-
.../src/main/java/mxnet/NDArrayCreation.java | 2 +-
.../src/main/java/mxnet/NDArrayOperation.java | 2 +-
src/executor/attach_op_execs_pass.cc | 8 +-
src/executor/exec_pass.h | 9 +-
src/imperative/cached_op.cc | 10 +-
src/imperative/imperative_utils.h | 26 +-
src/ndarray/ndarray.cc | 14 +-
src/operator/mshadow_op.h | 29 +-
src/operator/quantization/dequantize.cc | 4 +
.../quantization/mkldnn/mkldnn_quantize_v2-inl.h | 2 +-
.../quantization/mkldnn/mkldnn_quantized_conv.cc | 2 +-
.../mkldnn/mkldnn_quantized_fully_connected.cc | 2 +-
.../quantization/mkldnn/mkldnn_requantize-inl.h | 91 +++----
src/operator/quantization/quantization_utils.h | 78 ++++--
src/operator/quantization/quantize_graph_pass.cc | 3 +-
src/operator/quantization/quantize_v2-inl.h | 33 +--
src/operator/quantization/quantized_conv.cu | 2 +-
.../quantization/quantized_fully_connected.cc | 2 +-
.../quantization/quantized_fully_connected.cu | 2 +-
src/operator/quantization/requantize-inl.h | 23 +-
src/operator/quantization/requantize.cc | 4 +
src/operator/sequence_reverse-inl.h | 57 ++--
src/operator/subgraph/mkldnn/mkldnn_conv.cc | 48 +++-
src/operator/subgraph/mkldnn/mkldnn_fc.cc | 2 +-
tests/nightly/JenkinsfileForBinaries | 4 +-
tests/python/quantization/test_quantization.py | 86 +++++-
tests/python/unittest/test_ndarray.py | 31 +++
tests/python/unittest/test_operator.py | 2 +-
tools/pip/setup.py | 17 +-
tools/staticbuild/build.sh | 1 +
53 files changed, 1325 insertions(+), 415 deletions(-)
copy contrib/clojure-package/src/org/apache/clojure_mxnet/{ndarray_api.clj =>
ndarray_random_api.clj} (79%)
copy contrib/clojure-package/src/org/apache/clojure_mxnet/{symbol_api.clj =>
symbol_random_api.clj} (91%)
create mode 100644
contrib/clojure-package/test/good-test-ndarray-random-api.clj
create mode 100644 contrib/clojure-package/test/good-test-symbol-random-api.clj
create mode 100644 contrib/clojure-package/test/test-ndarray-random-api.clj
create mode 100644 contrib/clojure-package/test/test-symbol-random-api.clj
rename example/gluon/{super_resolution => }/data.py (100%)