This is an automated email from the ASF dual-hosted git repository.
lausen pushed a change to branch zero_sharding
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git.
omit fc54fab [FEATURE] Add g5 instance to CI (#20876)
omit 13b8690 Avoid modifying loaded library map while iterating in
lib_close() (#20941)
omit 7a49008 [BUGFIX] Type fix for large tensors (#20922)
omit 588f541 [master] 2022.00 MKL' version, update (#20865)
omit 54e122c quantized transpose operator (#20817)
omit 6c2b3dc Remove first_quantization_pass FC property (#20908)
omit 6e25c88 Add oneDNN support for "where" operator (#20862)
omit 93aa9e3 add Bartłomiej as committer (#20896)
omit 8069a18 [master] Fix issue with even number of channels in BatchNorm
(#20907)
omit 188d7b6 [master] Implemented oneDNN Backward Adaptive Pooling kernel
(#20825)
This update removed existing revisions from the reference, leaving the
reference pointing at a previous point in the repository history.
* -- * -- N refs/heads/zero_sharding (9f47730)
\
O -- O -- O (fc54fab)
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:
CONTRIBUTORS.md | 1 -
ci/Jenkinsfile_utils.groovy | 1 -
ci/docker/Dockerfile.build.ubuntu | 2 +-
ci/docker/runtime_functions.sh | 9 +-
ci/jenkins/Jenkins_steps.groovy | 16 --
ci/jenkins/Jenkinsfile_unix_gpu | 3 +-
python/mxnet/amp/lists/symbol_fp16.py | 2 -
python/mxnet/test_utils.py | 6 +-
src/initialize.cc | 22 +-
src/initialize.h | 4 +-
src/operator/contrib/adaptive_avg_pooling-inl.h | 3 +-
src/operator/contrib/adaptive_avg_pooling.cc | 150 ++++----------
src/operator/contrib/batch_norm_relu.cc | 6 +-
src/operator/contrib/count_sketch.cu | 3 -
src/operator/nn/batch_norm.cc | 6 +-
src/operator/nn/dnnl/dnnl_batch_norm-inl.h | 42 ++--
src/operator/nn/dnnl/dnnl_fully_connected-inl.h | 4 +
src/operator/nn/dnnl/dnnl_ops-inl.h | 7 -
src/operator/nn/dnnl/dnnl_pooling-inl.h | 68 +++----
src/operator/nn/dnnl/dnnl_pooling.cc | 122 ++++-------
src/operator/nn/dnnl/dnnl_transpose.cc | 2 +-
src/operator/nn/dnnl/dnnl_where-inl.h | 73 -------
src/operator/nn/dnnl/dnnl_where.cc | 224 ---------------------
src/operator/nn/pooling-inl.h | 11 +-
src/operator/nn/pooling.cc | 33 ++-
src/operator/numpy/np_matrix_op-inl.h | 61 ------
src/operator/numpy/np_matrix_op.cc | 59 ++++++
src/operator/numpy/np_where_forward_op.cc | 48 +----
.../quantization/dnnl/dnnl_quantized_pooling.cc | 4 +-
.../quantization/dnnl/dnnl_quantized_transpose.cc | 102 ----------
src/operator/quantization/quantized_transpose.cc | 130 ------------
src/operator/subgraph/dnnl/dnnl_conv.cc | 4 +-
src/operator/subgraph/dnnl/dnnl_fc.cc | 12 +-
src/operator/subgraph/dnnl/dnnl_fc_property.h | 3 +
src/operator/subgraph/dnnl/dnnl_fc_sum_fuse.h | 25 +--
tests/python/dnnl/subgraphs/test_conv_subgraph.py | 23 ---
tests/python/dnnl/subgraphs/test_fc_subgraph.py | 21 --
tests/python/dnnl/test_dnnl.py | 20 --
tests/python/gpu/test_operator_gpu.py | 9 +-
tests/python/quantization/test_quantization.py | 27 ---
tests/python/unittest/test_gluon_rnn.py | 26 +--
tests/python/unittest/test_numpy_op.py | 11 +-
tests/python/unittest/test_operator.py | 25 +--
43 files changed, 303 insertions(+), 1127 deletions(-)
delete mode 100644 src/operator/nn/dnnl/dnnl_where-inl.h
delete mode 100644 src/operator/nn/dnnl/dnnl_where.cc
delete mode 100644 src/operator/quantization/dnnl/dnnl_quantized_transpose.cc
delete mode 100644 src/operator/quantization/quantized_transpose.cc