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 a42e98b195 [microTVM] Use QNN schedules to give SOTA performance
(#13752)
add bc92a3ff66 Add v0.11.0 docs link to site (#14181)
add df429c58d8 [TIR] Allow TransformLayout with non-inversible index map
(#14095)
add c0f148a231 [TIR][Analysis] Implement IdentifyMemCpy analysis function
(#13947)
No new revisions were added by this update.
Summary of changes:
docs/conf.py | 2 +-
include/tvm/tir/analysis.h | 29 ++
include/tvm/tir/schedule/schedule.h | 9 +-
python/tvm/tir/schedule/schedule.py | 18 +-
src/tir/analysis/identify_memcpy.cc | 316 ++++++++++++++++++++
src/tir/schedule/concrete_schedule.cc | 5 +-
src/tir/schedule/concrete_schedule.h | 3 +-
src/tir/schedule/primitive.h | 7 +-
.../schedule/primitive/layout_transformation.cc | 44 +--
src/tir/schedule/schedule.cc | 4 +-
src/tir/schedule/traced_schedule.cc | 9 +-
src/tir/schedule/traced_schedule.h | 3 +-
.../unittest/test_tir_analysis_identify_memcpy.py | 324 +++++++++++++++++++++
.../unittest/test_tir_schedule_transform_layout.py | 34 ++-
14 files changed, 774 insertions(+), 33 deletions(-)
create mode 100644 src/tir/analysis/identify_memcpy.cc
create mode 100644 tests/python/unittest/test_tir_analysis_identify_memcpy.py