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 739027de42 [SPIRV] Fix forloop codegen in vulkan (#18715)
add 87c1e471b0 [REFACTOR] Migrate old tir.ir_builder to tvmscript or
builder (#18716)
add c6e8b02edd [CI] Fix double newlines in nightly docker update (#18717)
add 057aa10b58 [DOCS] Clarify trusted usage (#18718)
add 176c77388b [ci][docker] Nightly Docker image update (#18710)
No new revisions were added by this update.
Summary of changes:
ci/jenkins/data.py | 14 +-
ci/scripts/jenkins/open_docker_update_pr.py | 4 +-
docs/reference/security.rst | 2 +
python/tvm/relax/transform/legalize_ops/grad.py | 86 +-
python/tvm/script/ir_builder/base.py | 51 +-
python/tvm/script/ir_builder/tir/__init__.py | 1 +
python/tvm/script/ir_builder/tir/utils.py | 264 ++++++
python/tvm/tir/__init__.py | 1 -
python/tvm/tir/ir_builder.py | 530 ------------
python/tvm/topi/gpu/scan.py | 302 ++++---
python/tvm/topi/gpu/sort.py | 917 +++++++++++++--------
python/tvm/topi/index_put.py | 103 +--
python/tvm/topi/scan.py | 44 +-
python/tvm/topi/scatter.py | 76 +-
python/tvm/topi/scatter_elements.py | 54 +-
python/tvm/topi/searchsorted.py | 106 +--
python/tvm/topi/signal.py | 135 +--
python/tvm/topi/sparse_reshape.py | 252 +++---
python/tvm/topi/unique.py | 21 +-
python/tvm/topi/vision/nms.py | 285 +++----
python/tvm/topi/vision/nms_util.py | 177 ++--
tests/python/codegen/test_target_codegen_extern.py | 130 +--
tests/python/codegen/test_target_codegen_llvm.py | 106 ++-
.../codegen/test_target_codegen_static_init.py | 58 +-
tests/python/codegen/test_target_codegen_vulkan.py | 248 +++---
.../relax/test_transform_legalize_ops_grad.py | 2 +
.../test_transform_legalize_ops_manipulate.py | 3 +
tests/python/runtime/test_runtime_extension.py | 23 +-
tests/python/tir-base/test_tir_base.py | 14 +-
.../tir-base/test_tir_stmt_functor_ir_transform.py | 29 +-
.../tir-base/test_tir_structural_equal_hash.py | 23 +-
.../tir-transform/test_tir_transform_hoist_if.py | 721 +++++++---------
.../test_tir_transform_inject_double_buffer.py | 49 +-
.../test_tir_transform_inject_virtual_thread.py | 206 ++---
.../test_tir_transform_loop_partition.py | 230 +++---
.../test_tir_transform_lower_tvm_builtin.py | 26 +-
.../test_tir_transform_make_unpacked_api.py | 33 +-
.../test_tir_transform_narrow_datatype.py | 157 ++--
.../test_tir_transform_rewrite_unsafe_select.py | 54 +-
.../tir-transform/test_tir_transform_simplify.py | 78 +-
.../test_tir_transform_storage_rewrite.py | 304 +++----
.../test_tir_transform_unroll_loop.py | 89 +-
.../tir-transform/test_tir_transform_vectorize.py | 126 ++-
43 files changed, 3034 insertions(+), 3100 deletions(-)
create mode 100644 python/tvm/script/ir_builder/tir/utils.py
delete mode 100644 python/tvm/tir/ir_builder.py