This is an automated email from the ASF dual-hosted git repository.
ruihangl pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/tvm.git
from 5e862d4e41 [Frontend][PyTorch]Fix keywords to canonicalize scale and
zero point access for FX-quantized graphs (#13071)
add 9299a29fd3 [TVMScript] Evaluator, core parser, var table (#13088)
No new revisions were added by this update.
Summary of changes:
python/tvm/script/_parser/core/__init__.py | 2 +-
python/tvm/script/_parser/core/dispatch.py | 156 +++++
.../pooling.py => script/_parser/core/entry.py} | 37 +-
python/tvm/script/_parser/core/evaluator.py | 509 ++++++++++++++++
python/tvm/script/_parser/core/parser.py | 647 +++++++++++++++++++++
.../unittest/test_tvmscript_parser_evaluator.py | 63 ++
6 files changed, 1395 insertions(+), 19 deletions(-)
create mode 100644 python/tvm/script/_parser/core/dispatch.py
copy python/tvm/{topi/hexagon/pooling.py => script/_parser/core/entry.py} (54%)
create mode 100644 python/tvm/script/_parser/core/evaluator.py
create mode 100644 python/tvm/script/_parser/core/parser.py
create mode 100644 tests/python/unittest/test_tvmscript_parser_evaluator.py