This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch last-successful
in repository https://gitbox.apache.org/repos/asf/tvm.git
from bb8aad160d [ci] Temporarily disable MacOS RPC tests (#13186)
add 7950271ceb [TVMScript] TIR parser (#13190)
No new revisions were added by this update.
Summary of changes:
python/tvm/script/_parser/__init__.py | 3 +-
python/tvm/script/_parser/core/parser.py | 15 +
python/tvm/script/_parser/{ir => tir}/__init__.py | 9 +-
python/tvm/script/_parser/tir/entry.py | 108 +++++
python/tvm/script/_parser/tir/operation.py | 85 ++++
python/tvm/script/_parser/tir/parser.py | 468 +++++++++++++++++++++
tests/python/unittest/test_tvmscript_parser_tir.py | 63 +++
7 files changed, 747 insertions(+), 4 deletions(-)
copy python/tvm/script/_parser/{ir => tir}/__init__.py (75%)
create mode 100644 python/tvm/script/_parser/tir/entry.py
create mode 100644 python/tvm/script/_parser/tir/operation.py
create mode 100644 python/tvm/script/_parser/tir/parser.py
create mode 100644 tests/python/unittest/test_tvmscript_parser_tir.py