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 95ec38be98 [Arith] Provide tighter ConstIntBounds for special cases
(#16588)
add 8b5bd555d1 [Target][CUDA] Allow non-numeric arch as needed for latest
gpu (#16736)
add 97d92b5483 [Refactor][Runtime] Always specify device in allocator
interface (#16738)
add 7641c6e20e [CLML] Fix build TVM with CLML on MacOS (#16672)
add ff6ce9c2b3 Enable Shared Function in LiftTransformParam Pass (#16717)
add 48cedc7d2e [Arith][Fixup] Require feature flag for tighter inequality
bounds (#16735)
No new revisions were added by this update.
Summary of changes:
cmake/modules/contrib/CLML.cmake | 10 +
include/tvm/arith/analyzer.h | 29 +
include/tvm/relax/transform.h | 14 +-
include/tvm/runtime/memory/memory_manager.h | 11 +-
python/tvm/arith/__init__.py | 2 +-
python/tvm/arith/analyzer.py | 38 +-
python/tvm/contrib/nvcc.py | 10 +-
python/tvm/relax/transform/transform.py | 22 +-
src/arith/analyzer.cc | 10 +
src/arith/const_int_bound.cc | 168 ----
src/arith/rewrite_simplify.cc | 147 +++-
src/arith/rewrite_simplify.h | 1 +
src/relax/transform/lift_transform_params.cc | 638 ++++++++++-----
src/runtime/memory/memory_manager.cc | 10 +-
src/runtime/memory/naive_allocator.h | 22 +-
src/runtime/memory/pooled_allocator.h | 18 +-
src/runtime/relax_vm/builtin.cc | 3 +-
src/runtime/vm/vm.cc | 8 +-
src/target/tag.cc | 2 +-
src/target/target_kind.cc | 37 +-
tests/cpp/runtime/memory/memory_manager_tests.cc | 20 +-
tests/python/arith/test_arith_const_int_bound.py | 3 +
tests/python/arith/test_arith_rewrite_simplify.py | 13 +-
.../relax/test_transform_lift_transform_params.py | 880 +++++++++++++++++++++
24 files changed, 1669 insertions(+), 447 deletions(-)