This is an automated email from the ASF dual-hosted git repository.
masahi pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/tvm.git.
from f0efecc [microTVM][Zephyr] Enable RISCV Tests on QEMU CI (#9325)
add 6ef1c2a [CORE][Relay] Swap and remove compile_engine with te_compiler
followup of #8775 (#9282)
No new revisions were added by this update.
Summary of changes:
docs/arch/relay_op_strategy.rst | 8 +-
docs/reference/api/python/relay/backend.rst | 2 +-
python/tvm/auto_scheduler/relay_integration.py | 4 +-
.../autotvm/graph_tuner/utils/traverse_graph.py | 2 +-
python/tvm/autotvm/task/relay_integration.py | 4 +-
python/tvm/relay/backend/__init__.py | 2 +-
.../backend/{compile_engine.py => te_compiler.py} | 130 +++-----
python/tvm/relay/testing/py_converter.py | 13 +-
python/tvm/topi/arm_cpu/conv2d_alter_op.py | 2 +-
python/tvm/topi/bifrost/conv2d.py | 2 +-
python/tvm/topi/cuda/conv2d_alter_op.py | 2 +-
python/tvm/topi/cuda/conv3d_alter_op.py | 2 +-
python/tvm/topi/intel_graphics/conv2d_alter_op.py | 2 +-
python/tvm/topi/mali/conv2d.py | 2 +-
python/tvm/topi/x86/conv2d_alter_op.py | 2 +-
python/tvm/topi/x86/dense_alter_op.py | 2 +-
src/relay/backend/build_module.cc | 4 +-
src/relay/backend/compile_engine.cc | 338 ---------------------
src/relay/backend/compile_engine.h | 115 -------
src/relay/backend/interpreter.cc | 2 +-
src/relay/backend/te_compiler.cc | 39 +++
src/relay/backend/te_compiler.h | 3 +-
src/relay/backend/te_compiler_cache.h | 1 -
src/relay/backend/utils.h | 9 -
.../transforms/auto_scheduler_layout_rewrite.cc | 5 +-
src/runtime/object.cc | 4 +-
.../contrib/test_arm_compute_lib/infrastructure.py | 2 +-
tests/python/contrib/test_bnns/infrastructure.py | 2 +-
tests/python/contrib/test_ethosn/infrastructure.py | 4 +-
.../python/contrib/test_vitis_ai/infrastructure.py | 2 +-
tests/python/relay/aot/aot_test_utils.py | 5 +-
tests/python/relay/dyn/test_dynamic_op_level3.py | 5 +-
tests/python/relay/test_json_runtime.py | 8 +-
tests/python/relay/test_op_level3.py | 8 +-
tests/python/relay/test_pass_partition_graph.py | 10 +-
...compile_engine.py => test_relay_te_compiler.py} | 26 +-
.../unittest/test_tir_transform_narrow_datatype.py | 7 +-
37 files changed, 151 insertions(+), 629 deletions(-)
rename python/tvm/relay/backend/{compile_engine.py => te_compiler.py} (79%)
delete mode 100644 src/relay/backend/compile_engine.cc
delete mode 100644 src/relay/backend/compile_engine.h
rename tests/python/relay/{test_backend_compile_engine.py =>
test_relay_te_compiler.py} (93%)