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 49e6695586 [CI] Add llvm-15 and mlir-15 to Docker setup (#14303)
add 66e18fbe1f [Bugfix][TVMScript] Handle LetStmt for `var1 = var2`
expressions (#14320)
add 6006d25f43 [TensorIR][Schedule] New primitive `reorder_block_itervar`
(#14448)
add 8dea77a9ff [TOPI] dynamic externsion (#14450)
No new revisions were added by this update.
Summary of changes:
include/tvm/tir/schedule/schedule.h | 6 +
python/tvm/script/parser/core/parser.py | 9 +-
python/tvm/tir/schedule/schedule.py | 13 ++
python/tvm/tir/tensor_intrin/cuda.py | 4 +-
python/tvm/topi/x86/conv2d.py | 10 +-
src/tir/schedule/concrete_schedule.cc | 8 ++
src/tir/schedule/concrete_schedule.h | 1 +
src/tir/schedule/primitive.h | 9 ++
.../schedule/primitive/reorder_block_iter_var.cc | 148 +++++++++++++++++++++
src/tir/schedule/schedule.cc | 2 +
src/tir/schedule/traced_schedule.cc | 9 ++
src/tir/schedule/traced_schedule.h | 1 +
tests/python/relay/test_any.py | 32 ++++-
.../unittest/test_tir_reorder_block_iter_var.py | 86 ++++++++++++
.../python/unittest/test_tvmscript_syntax_sugar.py | 25 ++++
15 files changed, 351 insertions(+), 12 deletions(-)
create mode 100644 src/tir/schedule/primitive/reorder_block_iter_var.cc
create mode 100644 tests/python/unittest/test_tir_reorder_block_iter_var.py