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 bb14b2736e [CI] Further robustify is_last_build check (#18037)
add b40b6fa52d [REFACTOR][FFI] Update symbol name for library module
(#18042)
add 76946b4575 Resolving inconsistency between attention/attention_bias
(#18038)
add b2b7c62fb5 [REFACTOR] Phase out the relax tuning_api (#18043)
add aee96e64b5 [DTYPE] Fix dtype functions after dtype refactor (#18041)
No new revisions were added by this update.
Summary of changes:
docs/arch/introduction_to_module_serialization.rst | 17 +-
ffi/include/tvm/ffi/c_api.h | 4 +-
include/tvm/ir/transform.h | 31 +-
include/tvm/relax/tuning_api.h | 394 -----------
include/tvm/runtime/module.h | 16 +-
python/tvm/ffi/cython/base.pxi | 2 +-
python/tvm/ir/transform.py | 71 --
python/tvm/relax/op/nn/__init__.py | 1 +
python/tvm/relax/op/nn/nn.py | 97 +++
python/tvm/relax/transform/__init__.py | 4 +-
python/tvm/relax/transform/tuning_api/__init__.py | 22 -
python/tvm/relax/transform/tuning_api/_ffi_api.py | 19 -
python/tvm/relax/transform/tuning_api/database.py | 273 -------
.../transform/tuning_api/default_functions.py | 307 --------
.../tvm/relax/transform/tuning_api/primitives.py | 419 -----------
src/ir/transform.cc | 57 +-
src/relax/transform/meta_schedule.cc | 44 +-
src/relax/transform/tuning_api/database.cc | 344 ---------
src/relax/transform/tuning_api/primitives.cc | 272 -------
.../contrib/cutlass/fp8_blockwise_scaled_gemm.cu | 8 +-
src/runtime/disco/nccl/nccl.cc | 2 +-
src/runtime/disco/nccl/nccl_context.h | 4 +-
src/runtime/library_module.cc | 13 +-
src/target/codegen.cc | 4 +-
src/target/llvm/codegen_blob.cc | 43 +-
src/target/llvm/codegen_cpu.cc | 3 +-
src/target/llvm/llvm_module.cc | 8 +-
src/target/source/codegen_c_host.cc | 4 +-
src/tir/transforms/make_packed_api.cc | 2 +-
tests/python/relax/conftest.py | 4 -
tests/python/relax/test_transform_codegen_pass.py | 3 +-
.../relax/test_transform_meta_schedule_tuning.py | 3 -
tests/python/relax/test_tuning_api.py | 781 ---------------------
33 files changed, 176 insertions(+), 3100 deletions(-)
delete mode 100644 include/tvm/relax/tuning_api.h
delete mode 100644 python/tvm/relax/transform/tuning_api/__init__.py
delete mode 100644 python/tvm/relax/transform/tuning_api/_ffi_api.py
delete mode 100644 python/tvm/relax/transform/tuning_api/database.py
delete mode 100644 python/tvm/relax/transform/tuning_api/default_functions.py
delete mode 100644 python/tvm/relax/transform/tuning_api/primitives.py
delete mode 100644 src/relax/transform/tuning_api/database.cc
delete mode 100644 src/relax/transform/tuning_api/primitives.cc
delete mode 100644 tests/python/relax/test_tuning_api.py