This is an automated email from the ASF dual-hosted git repository.
bgawrych pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git.
from 6c2b3dc Remove first_quantization_pass FC property (#20908)
add 54e122c quantized transpose operator (#20817)
No new revisions were added by this update.
Summary of changes:
python/mxnet/amp/lists/symbol_fp16.py | 2 +
src/operator/nn/dnnl/dnnl_transpose.cc | 2 +-
src/operator/numpy/np_matrix_op-inl.h | 61 ++++++++++
src/operator/numpy/np_matrix_op.cc | 59 ----------
.../quantization/dnnl/dnnl_quantized_transpose.cc | 102 ++++++++++++++++
src/operator/quantization/quantized_transpose.cc | 130 +++++++++++++++++++++
tests/python/dnnl/subgraphs/test_conv_subgraph.py | 23 ++++
tests/python/dnnl/subgraphs/test_fc_subgraph.py | 21 ++++
tests/python/quantization/test_quantization.py | 27 +++++
9 files changed, 367 insertions(+), 60 deletions(-)
create mode 100644 src/operator/quantization/dnnl/dnnl_quantized_transpose.cc
create mode 100644 src/operator/quantization/quantized_transpose.cc