You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by gi...@apache.org on 2022/12/28 05:02:44 UTC

[tvm] branch nightly updated (e2680142ef -> f83055f90a)

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

github-bot pushed a change to branch nightly
in repository https://gitbox.apache.org/repos/asf/tvm.git


    from e2680142ef [CMSIS-NN] Global function that provides range based on dtype (#13652)
     add 7a38477b2f [Pytorch][Relay] aten::_weight_norm implementation (#13661)
     add 520f2c594b [Relay][Frontend] Span filling common API (#13402)
     add f83055f90a [QNN] Change in Pass Context for lookup table calculation (#13660)

No new revisions were added by this update.

Summary of changes:
 python/tvm/relay/expr.py                      | 202 +++++++++++++++++++++++---
 python/tvm/relay/frontend/common.py           | 165 ++++++++++++++++++++-
 python/tvm/relay/frontend/pytorch.py          |  15 ++
 python/tvm/relay/function.py                  |   7 +-
 python/tvm/relay/loops.py                     |   2 +-
 python/tvm/relay/qnn/op/canonicalizations.py  |  23 ++-
 python/tvm/testing/utils.py                   |  22 +++
 src/ir/span.cc                                |   4 +
 src/relay/ir/expr.cc                          |  88 +++++++++--
 src/relay/ir/function.cc                      |   4 +-
 tests/python/frontend/pytorch/test_forward.py |  24 +++
 tests/python/frontend/test_common.py          | 194 ++++++++++++++++++++++++-
 tests/python/relay/utils/tag_span.py          | 108 ++++++++++++++
 13 files changed, 808 insertions(+), 50 deletions(-)
 create mode 100644 tests/python/relay/utils/tag_span.py