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 ef80af65dd [Web] Support building tvm/web on Windows (#16810)
add 9862c84b9f [KVCache] Reducing CacheAuxDataManager copy size (#16831)
add 54e31f374c [Relax] Capture symbolic vars in struct info of weights
(#16834)
add 35c614303a [TVMScript] Do not throw error for duplicate definitions
(#16811)
add 545e0977e3 [Relax] Allow DeadCodeElimination within
ApplyPassToFunction (#16801)
add 61249b41ce [Relax][Transform] Provide callback versions of
LazyTransformParams (#16798)
add 6f74762743 [Relax] Provide well-formed output in
`transform.LazyGetInput` (#16841)
No new revisions were added by this update.
Summary of changes:
python/tvm/relax/transform/__init__.py | 2 +
python/tvm/relax/transform/transform.py | 80 +++++
src/relax/transform/dead_code_elimination.cc | 37 ++-
src/relax/transform/lazy_transform_params.cc | 280 ++++++++++++++++
src/relax/transform/rewrite_cuda_graph.cc | 48 ++-
src/runtime/relax_vm/paged_kv_cache.cc | 148 +++++----
src/script/printer/ir_docsifier.cc | 16 +-
tests/python/relax/conftest.py | 22 +-
.../relax/test_transform_dead_code_elimination.py | 155 +++++++++
.../relax/test_transform_lazy_transform_params.py | 362 +++++++++++++++++++++
.../relax/test_transform_rewrite_cuda_graph.py | 88 +++++
11 files changed, 1135 insertions(+), 103 deletions(-)
create mode 100644 src/relax/transform/lazy_transform_params.cc