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 d463395706 [REFACTOR][RUNTIME] Phase out legacy contrib runtime
backends (#18813)
add 6d46fa7d1e [Relax][PyTroch] Add randn.default and randn_like.default
support (#18815)
add 4fad6fc27f [Relax] Make ShapeType ndim parameter mandatory (#18814)
add 8fe6c8ad79 [REFACTOR][S-TIR] Lift STIR-only attributes out of
tir::attr namespace (#18816)
add f8dc0fb46f [REFACTOR][CI] Modernize Python dependency management with
uv (#18812)
No new revisions were added by this update.
Summary of changes:
docker/Dockerfile.ci_arm | 7 +-
docker/Dockerfile.ci_cpu | 8 +-
docker/Dockerfile.ci_gpu | 11 +-
docker/Dockerfile.ci_lint | 9 +-
docker/Dockerfile.ci_wasm | 7 +-
docker/install/ubuntu_install_core.sh | 1 +
docker/install/ubuntu_install_coreml.sh | 2 +-
docker/install/ubuntu_install_cuda_python.sh | 2 +-
docker/install/ubuntu_install_dgl.sh | 2 +-
docker/install/ubuntu_install_gluoncv.sh | 2 +-
docker/install/ubuntu_install_jax.sh | 6 +-
docker/install/ubuntu_install_nnef.sh | 2 +-
docker/install/ubuntu_install_onnx.sh | 6 +-
docker/install/ubuntu_install_python.sh | 75 ++------
docker/install/ubuntu_install_python_package.sh | 34 ++--
docker/install/ubuntu_install_redis.sh | 2 +-
docker/install/ubuntu_install_sphinx.sh | 22 +--
docker/install/ubuntu_install_tensorflow.sh | 2 +-
.../install/ubuntu_install_tensorflow_aarch64.sh | 2 +-
docker/install/ubuntu_install_tflite.sh | 2 +-
include/tvm/relax/type.h | 3 +-
include/tvm/s_tir/stmt.h | 199 +++++++++++++++++++++
include/tvm/tir/stmt.h | 150 ----------------
.../frontend/torch/exported_program_translator.py | 23 +++
python/tvm/relax/ty.py | 7 +-
.../transform/split_layout_rewrite_preproc.cc | 5 +-
src/s_tir/meta_schedule/mutator/mutate_parallel.cc | 3 +-
.../meta_schedule/mutator/mutate_tile_size.cc | 3 +-
src/s_tir/meta_schedule/mutator/mutate_unroll.cc | 5 +-
.../postproc/rewrite_cooperative_fetch.cc | 7 +-
src/s_tir/meta_schedule/postproc/rewrite_layout.cc | 5 +-
.../postproc/rewrite_parallel_vectorize_unroll.cc | 17 +-
.../postproc/rewrite_reduction_block.cc | 13 +-
.../meta_schedule/postproc/rewrite_tensorize.cc | 5 +-
.../meta_schedule/postproc/verify_gpu_code.cc | 7 +-
.../meta_schedule/schedule_rule/add_rfactor.cc | 3 +-
.../meta_schedule/schedule_rule/auto_inline.cc | 5 +-
.../schedule_rule/multi_level_tiling.cc | 15 +-
.../multi_level_tiling_tensor_core.cc | 37 ++--
.../multi_level_tiling_with_intrin.cc | 3 +-
.../schedule_rule/parallel_vectorize_unroll.cc | 9 +-
.../schedule_rule/random_compute_location.cc | 5 +-
src/s_tir/schedule/analysis/analysis.cc | 3 +-
.../schedule/primitive/annotate_buffer_access.cc | 6 +-
src/s_tir/schedule/primitive/block_annotate.cc | 9 +-
src/s_tir/schedule/primitive/compute_inline.cc | 6 +-
src/s_tir/schedule/primitive/read_write_at.cc | 6 +-
src/s_tir/transform/annotate_irregular_loop.cc | 5 +-
src/s_tir/transform/compact_buffer_region.cc | 5 +-
src/s_tir/transform/inject_software_pipeline.cc | 17 +-
src/s_tir/transform/lower_opaque_block.cc | 5 +-
.../manifest_shared_memory_local_stage.cc | 5 +-
src/s_tir/transform/memhammer_lower_auto_copy.cc | 3 +-
.../remove_weight_layout_rewrite_block.cc | 3 +-
src/s_tir/transform/storage_access.cc | 3 +-
src/te/operation/create_primfunc.cc | 5 +-
src/tir/ir/script/script_complete.cc | 5 +-
src/tir/transform/ir_utils.cc | 5 +-
tests/python/relax/test_ast_printer.py | 4 +-
.../relax/test_frontend_from_exported_program.py | 30 ++++
tests/python/relax/test_struct_info.py | 4 +-
61 files changed, 490 insertions(+), 372 deletions(-)
create mode 100644 include/tvm/s_tir/stmt.h