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 304aa1e084 [TIR] Allow starred expressions in TIR script (#15404)
add 22ec541a6f [Codegen][Metal] Support metal warp-level primitive (#15401)
add 3e00253b68 [TIR] Fix Primitive Rfactor DType (#15413)
add e2c8d7b33e [VM][OpenCL] Introduce textures allocation to VM memory
manager (#15400)
No new revisions were added by this update.
Summary of changes:
include/tvm/runtime/vm/memory_manager.h | 18 +-
src/runtime/vm/memory_manager.cc | 18 ++
src/runtime/vm/naive_allocator.h | 26 +++
src/runtime/vm/pooled_allocator.h | 10 +
src/target/source/intrin_rule_metal.cc | 53 ++++++
src/tir/schedule/primitive/reduction.cc | 6 +-
src/tir/transforms/lower_thread_allreduce.cc | 35 ++--
tests/cpp/runtime/vm/memory_manager_tests.cc | 204 +++++++++++++++++++++
tests/python/unittest/test_tir_schedule_rfactor.py | 57 ++++++
.../test_tir_transform_lower_thread_all_reduce.py | 103 +++++++++++
10 files changed, 516 insertions(+), 14 deletions(-)
create mode 100644 tests/cpp/runtime/vm/memory_manager_tests.cc