This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch nightly-docker-update in repository https://gitbox.apache.org/repos/asf/tvm.git
omit 293ad787d5 [ci][docker] Nightly Docker image update 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) add 44c35dcd96 [TVMScript] Fix parsing int64 loop with optional loop start (#13068) add 342ffb91d6 [Hexagon]Register fast softmax schedule with default schedule (#13083) add 5eab64885a [ROOFLINE] Add support for different dtypes (#13003) add 5ed94eefad [Node] Fix structural equal path tracing pointer usage (#13082) add 92784f415a [ci][docker] Nightly Docker image update This update added new revisions after undoing existing revisions. That is to say, some revisions that were in the old version of the branch are not in the new version. This situation occurs when a user --force pushes a change and generates a repository containing something like this: * -- * -- B -- O -- O -- O (293ad787d5) \ N -- N -- N refs/heads/nightly-docker-update (92784f415a) You should already have received notification emails for all of the O revisions, and so the following emails describe only the N revisions from the common base, B. Any revisions marked "omit" are not gone; other references still refer to them. Any revisions marked "discard" are gone forever. No new revisions were added by this update. Summary of changes: Jenkinsfile | 18 +- ci/jenkins/Jenkinsfile.j2 | 18 +- include/tvm/tir/stmt_functor.h | 51 ++++ python/tvm/ir/expr.py | 7 +- python/tvm/relay/op/strategy/hexagon.py | 16 +- python/tvm/script/tir/scope_handler.py | 42 ++-- python/tvm/utils/roofline/__init__.py | 64 ++--- python/tvm/utils/roofline/cuda.py | 167 ++++++++++--- python/tvm/utils/roofline/registry.py | 46 +++- python/tvm/utils/roofline/x86.py | 261 +++++++++++++-------- src/arith/iter_affine_map.cc | 4 +- src/node/structural_equal.cc | 20 +- 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_roofline.py | 119 +++++----- tests/python/unittest/test_transform_layout.py | 13 + .../python/unittest/test_tvmscript_syntax_sugar.py | 26 ++ 22 files changed, 964 insertions(+), 461 deletions(-) create mode 100644 src/tir/ir/data_type_rewriter.cc create mode 100644 tests/cpp/data_type_rewriter_test.cc