This is an automated email from the ASF dual-hosted git repository.
github-actions[bot] pushed a change to branch nightly
in repository https://gitbox.apache.org/repos/asf/tvm.git
from 61ae85b9d1 [REFACTOR][PYTHON] Consolidate derived_object into
tvm.ir.utils (#19630)
add 30c555bd20 [CI] Remove tvm-lint from tvm-bot (#19629)
add d26ea6ff51 [REFACTOR][SCRIPT] tvmscript streamline: lift printer.h,
restore one-way dep, migrate dialect config to extra_config (#19631)
add 6b4b866d65 [REFACTOR][ARITH] Phase out arith/scalable_expression;
arith no longer proves over scalable vectors (#19638)
add 0d70112300 [Relax][Frontend][TFLite] Add REDUCE_WINDOW support (#19637)
add e89570fa83 [Relax][Frontend][TFLite] Add RNN converter (#19632)
No new revisions were added by this update.
Summary of changes:
ci/scripts/github/github_tvmbot.py | 1 -
include/tvm/ir/expr.h | 3 -
include/tvm/ir/module.h | 3 -
include/tvm/script/ir_builder/base.h | 1 +
include/tvm/script/printer/config.h | 65 +-
include/tvm/script/printer/doc.h | 1 +
include/tvm/script/printer/ir_docsifier.h | 1 +
include/tvm/script/printer/printer.h | 71 +++
include/tvm/tirx/buffer.h | 2 -
include/tvm/tirx/function.h | 2 -
include/tvm/tirx/stmt.h | 3 -
python/tvm/relax/base_py_module.py | 8 +-
.../tvm/relax/frontend/tflite/tflite_frontend.py | 245 ++++++++
python/tvm/runtime/script_printer.py | 83 +--
src/arith/analyzer.cc | 18 -
src/arith/const_int_bound.cc | 6 -
src/arith/rewrite_simplify.cc | 36 +-
src/arith/scalable_expression.cc | 127 ----
src/arith/scalable_expression.h | 96 ---
src/s_tir/meta_schedule/database/json_database.cc | 14 +-
src/s_tir/schedule/error.cc | 4 +-
src/s_tir/schedule/ir_comparator.cc | 20 +-
src/script/printer/config.cc | 4 +-
src/script/printer/script_printer.cc | 24 +-
src/script/printer/utils.h | 13 +-
src/target/llvm/codegen_aarch64.cc | 20 +-
src/tirx/ir/expr.cc | 27 +-
src/tirx/op/op.cc | 14 +-
src/tirx/script/printer/buffer.cc | 7 +-
src/tirx/transform/vectorize_loop.cc | 28 +-
tests/cpp/tir_scalable_datatype.cc | 3 +-
tests/python/arith/test_arith_rewrite_simplify.py | 7 +
tests/python/arith/test_arith_simplify.py | 8 +
tests/python/relax/test_frontend_tflite.py | 696 +++++++++++++++++++++
tests/python/s_tir/dlight/test_cpu_reduction.py | 5 +
.../s_tir/schedule/test_tir_schedule_split_fuse.py | 117 +---
tests/python/tirx/test_printer_tir_namespaces.py | 2 +-
.../tirx/transform/test_transform_lower_tirx.py | 10 +-
38 files changed, 1233 insertions(+), 562 deletions(-)
create mode 100644 include/tvm/script/printer/printer.h
delete mode 100644 src/arith/scalable_expression.cc
delete mode 100644 src/arith/scalable_expression.h