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 29a8f06066 [Arith] Optional rewriting and simplification into AND of
ORs (#12972)
add b389d4dac4 [Torch] Fix torch contrib issues (#13061)
add f232272e75 [TIR] Refactor NarrowDataType into DataTypeLegalizer
(#13049)
add 493458e552 [TE] Raise error for non-bijective transformation (#12926)
add 605876e638 [TEST] Fix the broken VNNI MetaSchedule test (#13067)
No new revisions were added by this update.
Summary of changes:
apps/pt_tvmdsoop/tests/test_as_torch.py | 20 +--
include/tvm/tir/stmt_functor.h | 51 ++++++
python/tvm/contrib/torch/as_torch.py | 7 +-
python/tvm/contrib/torch/optimize_torch.py | 4 +-
python/tvm/meta_schedule/__init__.py | 1 +
src/arith/iter_affine_map.cc | 4 +-
src/tir/ir/data_type_rewriter.cc | 195 +++++++++++++++++++++
src/tir/ir/index_map.cc | 33 ++--
src/tir/transforms/narrow_datatype.cc | 154 ++--------------
tests/cpp/data_type_rewriter_test.cc | 140 +++++++++++++++
tests/python/contrib/test_hexagon/test_models.py | 4 +-
tests/python/integration/test_auto_tensorize.py | 16 +-
.../test_meta_schedule_vnni_integration.py | 11 +-
tests/python/unittest/test_transform_layout.py | 13 ++
14 files changed, 468 insertions(+), 185 deletions(-)
create mode 100644 src/tir/ir/data_type_rewriter.cc
create mode 100644 tests/cpp/data_type_rewriter_test.cc