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 8621517d3d [skip ci] Post unity transition
add bac6564614 Bump pillow from 10.0.1 to 10.2.0 in /apps/microtvm/cmsisnn
(#16452)
add 38375bb7a8 Bump pillow from 10.0.1 to 10.2.0 in /apps/microtvm/ethosu
(#16451)
add 7789b248fb [Unity][Transform] Handle symbolic variables in LambdaLift
(#16411)
add 030ca4a74a [Unity][Transform] Implement
relax.transform.ExpandMatmulOfSum (#16313)
add a7478cc2b1 [VM][Hexagon] Implement dma_copy and dma_wait builtin for
hexagon (#16448)
add 2c49e01a0a [Unity][Transform] Implement
relax.transform.ReorderTakeAfterMatmul (#16315)
add 7eb45ee5db [Schedule] Loop-Partition Scheduling Primitive (#16431)
No new revisions were added by this update.
Summary of changes:
apps/microtvm/cmsisnn/requirements.txt | 124 +++---
apps/microtvm/ethosu/requirements.txt | 124 +++---
cmake/modules/Hexagon.cmake | 3 +
include/tvm/tir/schedule/schedule.h | 11 +
python/tvm/relax/transform/__init__.py | 2 +
python/tvm/relax/transform/transform.py | 35 ++
python/tvm/tir/schedule/schedule.py | 108 +++++
src/relax/transform/expand_matmul_of_sum.cc | 96 +++++
src/relax/transform/lambda_lift.cc | 381 ++++++++---------
src/relax/transform/reorder_take_after_matmul.cc | 164 ++++++++
src/runtime/relax_vm/hexagon/builtin.cc | 62 +++
src/tir/schedule/concrete_schedule.cc | 183 +++++---
src/tir/schedule/concrete_schedule.h | 2 +
src/tir/schedule/primitive.h | 12 +
src/tir/schedule/primitive/loop_transformation.cc | 293 +++++++++++++
src/tir/schedule/schedule.cc | 2 +
src/tir/schedule/traced_schedule.cc | 21 +
src/tir/schedule/traced_schedule.h | 2 +
.../contrib/test_hexagon/test_dma_builtin.py | 192 +++++++++
.../relax/test_transform_expand_matmul_of_sum.py | 127 ++++++
tests/python/relax/test_transform_lambda_lift.py | 150 +++++--
.../test_transform_reorder_take_after_matmul.py | 186 +++++++++
.../tir-schedule/test_tir_schedule_partition.py | 460 +++++++++++++++++++++
23 files changed, 2356 insertions(+), 384 deletions(-)
create mode 100644 src/relax/transform/expand_matmul_of_sum.cc
create mode 100644 src/relax/transform/reorder_take_after_matmul.cc
create mode 100644 src/runtime/relax_vm/hexagon/builtin.cc
create mode 100644 tests/python/contrib/test_hexagon/test_dma_builtin.py
create mode 100644 tests/python/relax/test_transform_expand_matmul_of_sum.py
create mode 100644
tests/python/relax/test_transform_reorder_take_after_matmul.py
create mode 100644 tests/python/tir-schedule/test_tir_schedule_partition.py