You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by ma...@apache.org on 2022/02/15 23:51:43 UTC

[tvm] branch main updated (6de8fea -> 64e94ab)

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

masahi pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/tvm.git.


    from 6de8fea  add back supported tests (#10116)
     add 64e94ab  [QNN] Register a bunch of unary elementwise ops (#10086)

No new revisions were added by this update.

Summary of changes:
 python/tvm/relay/qnn/op/qnn.py                     | 183 +++++++++++++++++-
 src/relay/qnn/op/op_common.h                       |  93 +++++++++
 src/relay/qnn/op/rsqrt.cc                          |  92 ---------
 src/relay/qnn/op/unary_elementwise_op.cc           |  49 +++++
 src/relay/qnn/utils.h                              |   3 +
 src/relay/transforms/pattern_utils.h               |  15 ++
 tests/python/relay/test_op_qnn_rsqrt.py            |  95 ---------
 .../python/relay/test_op_qnn_unary_elementwise.py  | 214 +++++++++++++++++++++
 .../test_pass_fake_quantization_to_integer.py      |   1 -
 9 files changed, 553 insertions(+), 192 deletions(-)
 delete mode 100644 src/relay/qnn/op/rsqrt.cc
 create mode 100644 src/relay/qnn/op/unary_elementwise_op.cc
 delete mode 100644 tests/python/relay/test_op_qnn_rsqrt.py
 create mode 100644 tests/python/relay/test_op_qnn_unary_elementwise.py