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 3da07387cb [Relax][PyTorch] Support log2, log10 and log1p ops for
ExportedProgram importer (#17778)
add c962198100 [REFACTOR] Phase out StackVM (#17784)
add 41c9c3b91a [REFACTOR][TIR] remove legacy tir::any (#17783)
add e60fd806eb [3rdparty] Enable bfloat16 for custom allreduce kernel
(#17780)
add 26041f8870 [Relax][Frontend] Support max/min in frontend op interface
(#17782)
add 90391bb016 [Relax] Enable bfloat16 for softmax struct-info inference
(#17781)
No new revisions were added by this update.
Summary of changes:
3rdparty/tensorrt_llm/custom_allreduce_kernels.cu | 11 +-
CMakeLists.txt | 10 -
include/tvm/tir/expr.h | 36 --
include/tvm/tir/expr_functor.h | 4 -
include/tvm/topi/detail/strided_slice.h | 3 +-
.../msc/framework/tensorrt/transform/pattern.py | 4 +-
python/tvm/contrib/msc/plugin/codegen/sources.py | 6 +-
python/tvm/contrib/stackvm.py | 45 --
python/tvm/relax/frontend/nn/op.py | 68 +++
python/tvm/runtime/module.py | 9 -
python/tvm/tir/__init__.py | 2 +-
python/tvm/tir/expr.py | 12 -
python/tvm/topi/nn/pad.py | 5 +-
python/tvm/topi/utils.py | 6 +-
rust/tvm-sys/src/device.rs | 3 +-
rust/tvm-sys/src/value.rs | 2 +-
src/contrib/msc/core/utils.h | 6 +-
src/relax/op/nn/nn.cc | 3 +-
src/runtime/module.cc | 2 -
src/runtime/stackvm/stackvm.cc | 615 ---------------------
src/runtime/stackvm/stackvm.h | 459 ---------------
src/runtime/stackvm/stackvm_module.cc | 149 -----
src/runtime/stackvm/stackvm_module.h | 47 --
src/script/printer/legacy_repr.cc | 3 -
src/script/printer/tir/expr.cc | 6 -
src/support/libinfo.cc | 4 -
src/target/stackvm/codegen_stackvm.cc | 555 -------------------
src/target/stackvm/codegen_stackvm.h | 165 ------
src/target/target_kind.cc | 3 -
src/tir/analysis/deep_equal.cc | 3 -
src/tir/ir/expr.cc | 12 -
src/tir/ir/expr_functor.cc | 4 -
src/tir/ir/tir_visitor_with_path.cc | 2 -
src/tir/ir/tir_visitor_with_path.h | 1 -
tests/python/arith/test_arith_rewrite_simplify.py | 3 -
tests/python/codegen/test_target_codegen_device.py | 2 +-
tests/python/codegen/test_target_codegen_extern.py | 1 -
.../python/codegen/test_target_codegen_vm_basic.py | 143 -----
tests/python/relax/test_frontend_nn_op.py | 48 ++
tests/python/relax/test_op_nn.py | 9 +-
.../test_tir_transform_lower_tvm_builtin.py | 1 -
.../python/tvmscript/test_tvmscript_printer_tir.py | 10 -
tests/scripts/task_config_build_gpu.sh | 1 -
43 files changed, 140 insertions(+), 2343 deletions(-)
delete mode 100644 python/tvm/contrib/stackvm.py
delete mode 100644 src/runtime/stackvm/stackvm.cc
delete mode 100644 src/runtime/stackvm/stackvm.h
delete mode 100644 src/runtime/stackvm/stackvm_module.cc
delete mode 100644 src/runtime/stackvm/stackvm_module.h
delete mode 100644 src/target/stackvm/codegen_stackvm.cc
delete mode 100644 src/target/stackvm/codegen_stackvm.h
delete mode 100644 tests/python/codegen/test_target_codegen_vm_basic.py