You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by gi...@apache.org on 2022/09/19 19:49:17 UTC

[tvm] branch last-successful updated (2af9b90ec1 -> f19046caba)

This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch last-successful
in repository https://gitbox.apache.org/repos/asf/tvm.git


    from 2af9b90ec1 [TIR] Implement API for padded layout transformations (#12720)
     add e30ac71bde [Arith][TIR] IntSetAnalyzer, delay intersection of IntSet until use (#12821)
     add da7f65d9d1 [Hexagon] Create test examples to show parallelization (#12654)
     add f19046caba [MetaSchedule] Support padding for irregular shapes for CUDA tensor core (#12759)

No new revisions were added by this update.

Summary of changes:
 python/tvm/tir/schedule/analysis.py                |   7 +-
 python/tvm/tir/schedule/transform.py               |   8 +-
 src/arith/int_set.cc                               | 126 +++++------
 .../multi_level_tiling_tensor_core.cc              |   3 +-
 src/tir/schedule/analysis.h                        |   8 +-
 src/tir/schedule/analysis/analysis.cc              |  53 ++++-
 src/tir/schedule/transform.cc                      |  10 +-
 src/tir/schedule/transform.h                       |   3 +-
 .../contrib/test_hexagon/test_parallel_hvx.py      | 230 +++++++++++++++++++++
 .../contrib/test_hexagon/test_parallel_scalar.py   | 159 ++++++++++++++
 .../test_meta_schedule_schedule_rule_mlt_tc.py     | 149 ++++++++++++-
 .../python/unittest/test_tir_schedule_analysis.py  |  29 ++-
 12 files changed, 683 insertions(+), 102 deletions(-)
 create mode 100644 tests/python/contrib/test_hexagon/test_parallel_hvx.py
 create mode 100644 tests/python/contrib/test_hexagon/test_parallel_scalar.py