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 5a78da4f3c [TIR] Output DeclBuffer in LowerTVMBuiltin (#15243)
add 24ae0d5b05 [bugfix][frontend][keras] Fix go_backwards attribute of
LSTM in keras frontend (#15261)
add 0c1aad78f9 [Testing] Add tvm.testing.local_run (#15268)
add a60cd0fecf [TIR] Allow symbolic bounds in IndexMap analysis (#15264)
No new revisions were added by this update.
Summary of changes:
include/tvm/tir/index_map.h | 12 +--
include/tvm/topi/transform.h | 9 +-
pyproject.toml | 3 +
python/tvm/relay/frontend/keras.py | 2 +
python/tvm/te/schedule.py | 11 +-
python/tvm/testing/__init__.py | 2 +-
python/tvm/testing/{rpc_run.py => runner.py} | 85 ++++++++++++++--
python/tvm/tir/function.py | 20 ++--
python/tvm/tir/schedule/schedule.py | 40 ++++++--
python/tvm/tir/schedule/testing.py | 6 +-
src/arith/ir_mutator_with_analyzer.cc | 20 ++++
src/arith/ir_mutator_with_analyzer.h | 6 ++
src/arith/iter_affine_map.cc | 6 ++
src/relay/backend/te_compiler_cache.cc | 4 +-
src/relay/op/tensor/transform.cc | 4 +-
src/runtime/logging.cc | 3 +
src/target/source/codegen_cuda.cc | 3 +-
src/te/schedule/message_passing.cc | 14 ++-
src/te/schedule/schedule_lang.cc | 6 +-
src/tir/ir/index_map.cc | 64 ++++++------
src/tir/schedule/analysis.h | 10 ++
src/tir/schedule/analysis/analysis.cc | 14 +++
src/tir/schedule/primitive/cache_read_write.cc | 7 +-
src/tir/schedule/primitive/compute_at.cc | 14 ---
.../schedule/primitive/layout_transformation.cc | 81 ++++++++-------
src/tir/schedule/transform.cc | 22 ++--
src/tir/transforms/flatten_buffer.cc | 13 +--
src/tir/transforms/storage_flatten.cc | 7 +-
src/tir/transforms/transform_mma_buffer_layout.cc | 6 +-
tests/python/frontend/keras/test_forward.py | 2 +
.../python/unittest/test_arith_iter_affine_map.py | 4 +-
.../test_meta_schedule_relay_integration.py | 20 +++-
...meta_schedule_schedule_cuda_layout_transform.py | 6 +-
.../test_meta_schedule_schedule_rule_mlt_tc.py | 19 ++--
.../unittest/test_meta_schedule_trace_apply.py | 10 +-
.../python/unittest/test_meta_schedule_tune_tir.py | 5 +
...sform_layout.py => test_te_transform_layout.py} | 0
.../{test_index_map.py => test_tir_index_map.py} | 11 +-
.../unittest/test_tir_schedule_transform_layout.py | 112 +++++++++++++++++++--
39 files changed, 493 insertions(+), 190 deletions(-)
rename python/tvm/testing/{rpc_run.py => runner.py} (66%)
rename tests/python/unittest/{test_transform_layout.py =>
test_te_transform_layout.py} (100%)
rename tests/python/unittest/{test_index_map.py => test_tir_index_map.py} (97%)