You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by mb...@apache.org on 2020/11/26 16:00:58 UTC

[tvm] branch main updated (81d9f11 -> 093629c)

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

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


    from 81d9f11  Add Relay option to link parameters into runtime Modules (#6917)
     add 093629c  Add initial support for quantized transpose convolution in Relay (#6899)

No new revisions were added by this update.

Summary of changes:
 python/tvm/relay/frontend/tflite.py               |  72 ++-
 python/tvm/relay/qnn/op/legalizations.py          |  24 +
 python/tvm/relay/qnn/op/qnn.py                    | 112 ++++
 src/relay/qnn/op/convolution_transpose.cc         | 154 ++++++
 tests/python/frontend/tflite/test_forward.py      | 159 ++++--
 tests/python/relay/test_op_qnn_conv2_transpose.py | 638 ++++++++++++++++++++++
 6 files changed, 1103 insertions(+), 56 deletions(-)
 create mode 100644 src/relay/qnn/op/convolution_transpose.cc
 create mode 100644 tests/python/relay/test_op_qnn_conv2_transpose.py