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.
omit 49ee3a7 [numpy] Fix np branch after rebase (#15086)
omit 82a27d7 Numpy Unary Ops (#15010)
omit b930832 Numpy-compatible stack (#15027)
omit 3e967b5 Temporarily disable test_amp
omit 70ef881 Change np_compat to np_shape
omit 24eaed2 [numpy] Refactor np module (example runs through) (#15055)
omit 80bd78a [numpy] Refactor np modules (#14989)
omit 99ce5d1 [numpy] Some np ops for d2l (#14924)
omit 289b818 numpy-compatible mean (#14859)
omit 6a5d367 [numpy] Numpy dot (#14831)
omit ee21b76 Enable np op compat check with name prefix (#14897)
omit 9bfb2ce [numpy] Infra for supporting numpy ops in imperative mode and
Gluon APIs (#14758)
omit 78633f7 [Do not review] [Do not merge] New numpy-compatible sum
(#14739)
add 6f01a6f add epsilon for tolerance level (#15098)
add 866ec10 Fix R installation instructions (windows / mac) (#15087)
add e8a20fb Enable serializing/deserializing ndarrays in np_shape
semantics (#15090)
add 75a90d0 [MXNET-1408] Adding test to verify Large Tensor Support for
ravel and unravel (#15048)
add cdb7b72 Fix mkldnn backend when using naive engine (#15089)
add 6118dcc Add gluonCV to fix AMP Tutorial (#15039)
add 52f77c9 [clojure] fix: image test does not rely on s3 to run (#15122)
add 360f8d0 [BUGFIX] fix unknown parameter shapes when np_shape is turned
on. (#15097)
add 99e69e6 [MXNET-1410]Adding Large Tensor Support for tensor transpose
(#15059)
add 9125f6a remove warning in tutorial: (#15135)
add 3ebd873 rat check make target (#15127)
add a37cd7a [MXNET-1405] tests for large tensor support for Softmax
operator (#15042)
add 75feade [Flaky Test] Bump up bilinear_resize (#15129)
new ffd690d [Do not review] [Do not merge] New numpy-compatible sum
(#14739)
new 2f71241 [numpy] Infra for supporting numpy ops in imperative mode and
Gluon APIs (#14758)
new 355254e Enable np op compat check with name prefix (#14897)
new 7a12654 [numpy] Numpy dot (#14831)
new 4325676 numpy-compatible mean (#14859)
new 0ee508e [numpy] Some np ops for d2l (#14924)
new 043f01e [numpy] Refactor np modules (#14989)
new 308bcc6 [numpy] Refactor np module (example runs through) (#15055)
new 6e33cc1 Change np_compat to np_shape
new 877e0e9 Temporarily disable test_amp
new 9911675 Numpy-compatible stack (#15027)
new ac92ec3 Numpy Unary Ops (#15010)
new 0010c43 [numpy] Fix np branch after rebase (#15086)
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 (49ee3a7)
\
N -- N -- N refs/heads/numpy (0010c43)
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 13 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 | 20 ++++++
ci/docker/install/ubuntu_tutorials.sh | 4 +-
.../test/org/apache/clojure_mxnet/image_test.clj | 34 +++++----
docs/install/index.md | 9 ++-
docs/install/osx_setup.md | 5 +-
docs/install/windows_setup.md | 6 ++
docs/tutorials/amp/amp_tutorial.md | 13 +---
python/mxnet/gluon/parameter.py | 8 +++
python/mxnet/gluon/utils.py | 16 +++++
python/mxnet/test_utils.py | 6 ++
python/mxnet/util.py | 4 ++
src/engine/naive_engine.cc | 4 ++
src/ndarray/ndarray.cc | 46 +++++++++---
src/operator/nn/mkldnn/mkldnn_convolution.cc | 5 +-
src/operator/nn/mkldnn/mkldnn_deconvolution.cc | 7 +-
src/operator/nn/mkldnn/mkldnn_fully_connected.cc | 5 +-
.../quantization/mkldnn/mkldnn_quantized_conv.cc | 7 +-
.../mkldnn/mkldnn_quantized_fully_connected.cc | 5 +-
src/operator/tensor/matrix_op-inl.h | 8 +--
tests/nightly/test_large_array.py | 83 +++++++++++++++++-----
tests/python/unittest/test_gluon.py | 16 +++++
tests/python/unittest/test_image.py | 5 +-
tests/python/unittest/test_ndarray.py | 35 ++++++---
tests/python/unittest/test_operator.py | 4 +-
24 files changed, 268 insertions(+), 87 deletions(-)