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 2021/06/08 19:32:42 UTC

[tvm] branch main updated (64a8e81 -> 9be0f4f)

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

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


    from 64a8e81  [Frontend, Tensorflow2] Adding TF2 frontend code with support for control flow ops  (#8142)
     add 9be0f4f  [Relay] Convert a fake quantized or QAT graph into QNN ops (#8126)

No new revisions were added by this update.

Summary of changes:
 python/tvm/relay/frontend/onnx.py                  |   6 +
 python/tvm/relay/op/__init__.py                    |   1 +
 python/tvm/relay/op/op.py                          |  21 ++
 python/tvm/relay/transform/__init__.py             |   1 +
 .../transform/fake_quantization_to_integer.py      | 166 ++++++++++++
 python/tvm/relay/transform/transform.py            |  28 ++
 .../transforms/fake_quantization_to_integer.cc     | 300 +++++++++++++++++++++
 .../test_pass_fake_quantization_to_integer.py      | 279 +++++++++++++++++++
 8 files changed, 802 insertions(+)
 create mode 100644 python/tvm/relay/transform/fake_quantization_to_integer.py
 create mode 100644 src/relay/transforms/fake_quantization_to_integer.cc
 create mode 100644 tests/python/relay/test_pass_fake_quantization_to_integer.py