You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by la...@apache.org on 2020/08/31 17:12:31 UTC

[incubator-mxnet] branch master updated (e2aacce -> 1393602)

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

lausen pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git.


    from e2aacce  Fix fusion of clip if a_min or a_max are not given (#19035)
     add 1393602  [MXNET-1446] Quantization: intgemm matrix multiply wrappers  (#17559)

No new revisions were added by this update.

Summary of changes:
 CMakeLists.txt                                     |  26 ++
 LICENSE                                            |   2 +
 include/mxnet/base.h                               |   2 +-
 .../contrib/intgemm/intgemm_fully_connected_op.cc  | 328 +++++++++++++++++++++
 src/operator/contrib/intgemm/max_absolute_op.cc    | 119 ++++++++
 src/operator/contrib/intgemm/prepare_data_op.cc    | 134 +++++++++
 src/operator/contrib/intgemm/prepare_weight_op.cc  | 180 +++++++++++
 src/operator/contrib/intgemm/take_weight_op.cc     | 146 +++++++++
 src/storage/cpu_device_storage.h                   |   2 +-
 src/storage/storage_manager_helpers.h              |   2 +-
 tests/python/unittest/test_contrib_intgemm.py      | 219 ++++++++++++++
 11 files changed, 1157 insertions(+), 3 deletions(-)
 create mode 100644 src/operator/contrib/intgemm/intgemm_fully_connected_op.cc
 create mode 100644 src/operator/contrib/intgemm/max_absolute_op.cc
 create mode 100644 src/operator/contrib/intgemm/prepare_data_op.cc
 create mode 100644 src/operator/contrib/intgemm/prepare_weight_op.cc
 create mode 100644 src/operator/contrib/intgemm/take_weight_op.cc
 create mode 100644 tests/python/unittest/test_contrib_intgemm.py