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/20 05:02:50 UTC

[tvm] branch nightly updated (4096548d13 -> ab28afbab2)

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 4096548d13 [BugFix][TVMScript] Parser crash (#13630)
     add ddb006ed31 [TRANSFORM] Fix virtual device annotation issue with BYOC subgraphs (#13325)
     add 6161a8d552 [BugFix][TVMScript]fix var capturing order error (#13640)
     add ab28afbab2 [TVMScript] Remove obsolete modules (#13638)

No new revisions were added by this update.

Summary of changes:
 apps/microtvm/cmsisnn/requirements.txt             |    3 -
 apps/microtvm/ethosu/requirements.txt              |    3 -
 docker/install/ubuntu_install_python_package.sh    |    1 -
 docs/README.md                                     |    2 +-
 docs/contribute/pull_request.rst                   |    2 +-
 gallery/how_to/work_with_microtvm/micro_ethosu.py  |    1 -
 python/gen_requirements.py                         |    2 -
 python/tvm/script/parser/core/utils.py             |    2 +-
 python/tvm/script/parser_v1/__init__.py            |   21 -
 python/tvm/script/parser_v1/_ffi_api.py            |   20 -
 python/tvm/script/parser_v1/context_maintainer.py  |  248 ----
 python/tvm/script/parser_v1/diagnostics.py         |   55 -
 python/tvm/script/parser_v1/meta_unparser.py       |   45 -
 python/tvm/script/parser_v1/parser.py              | 1391 --------------------
 python/tvm/script/parser_v1/registry.py            |   62 -
 python/tvm/script/parser_v1/tir/__init__.py        |   33 -
 python/tvm/script/parser_v1/tir/__init__.pyi       |  475 -------
 python/tvm/script/parser_v1/tir/intrin.py          |  307 -----
 python/tvm/script/parser_v1/tir/node.py            |  218 ---
 python/tvm/script/parser_v1/tir/prim_func.py       |   45 -
 python/tvm/script/parser_v1/tir/scope_handler.py   |  793 -----------
 python/tvm/script/parser_v1/tir/special_stmt.py    |  927 -------------
 python/tvm/script/parser_v1/tir/ty.py              |  226 ----
 python/tvm/script/parser_v1/utils.py               |  105 --
 src/relay/transforms/device_aware_visitors.cc      |    3 -
 src/tir/schedule/error.h                           |    2 +-
 .../test_clml/test_compiler.py}                    |   37 +-
 tests/python/unittest/test_tvmscript_regression.py |   17 +
 tests/python/unittest/test_tvmscript_spans.py      |   73 -
 tests/scripts/ci.py                                |    1 -
 30 files changed, 40 insertions(+), 5080 deletions(-)
 delete mode 100644 python/tvm/script/parser_v1/__init__.py
 delete mode 100644 python/tvm/script/parser_v1/_ffi_api.py
 delete mode 100644 python/tvm/script/parser_v1/context_maintainer.py
 delete mode 100644 python/tvm/script/parser_v1/diagnostics.py
 delete mode 100644 python/tvm/script/parser_v1/meta_unparser.py
 delete mode 100644 python/tvm/script/parser_v1/parser.py
 delete mode 100644 python/tvm/script/parser_v1/registry.py
 delete mode 100644 python/tvm/script/parser_v1/tir/__init__.py
 delete mode 100644 python/tvm/script/parser_v1/tir/__init__.pyi
 delete mode 100644 python/tvm/script/parser_v1/tir/intrin.py
 delete mode 100644 python/tvm/script/parser_v1/tir/node.py
 delete mode 100644 python/tvm/script/parser_v1/tir/prim_func.py
 delete mode 100644 python/tvm/script/parser_v1/tir/scope_handler.py
 delete mode 100644 python/tvm/script/parser_v1/tir/special_stmt.py
 delete mode 100644 python/tvm/script/parser_v1/tir/ty.py
 delete mode 100644 python/tvm/script/parser_v1/utils.py
 copy tests/python/{unittest/test_tvmscript_ir_builder_irmodule.py => contrib/test_clml/test_compiler.py} (58%)
 delete mode 100644 tests/python/unittest/test_tvmscript_spans.py