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/15 00:53:54 UTC

[tvm] branch last-successful updated (3d7439eb0b -> 421ff76e3e)

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 3d7439eb0b [TVMScript] IRBuilder methods for `PrimFunc` (#12755)
     add 421ff76e3e [TIR][Meta-Schedule] Tuple-reduction scheduling support (#11639)

No new revisions were added by this update.

Summary of changes:
 .../schedule_rule/cross_thread_reduction.cc        |   7 +
 src/tir/schedule/analysis.h                        |  48 +-
 src/tir/schedule/analysis/analysis.cc              | 524 +--------------
 src/tir/schedule/analysis/reducer.cc               | 702 +++++++++++++++++++++
 src/tir/schedule/primitive/reduction.cc            | 402 ++++++++----
 src/tir/transforms/lower_cross_thread_reduction.cc | 323 ++++++----
 ...test_meta_schedule_schedule_rule_add_rfactor.py | 166 +++++
 ...chedule_schedule_rule_cross_thread_reduction.py |  99 +++
 tests/python/unittest/test_tir_schedule_rfactor.py | 649 ++++++++++++++++++-
 ...t_tir_transform_lower_cross_thread_reduction.py | 244 ++++++-
 10 files changed, 2314 insertions(+), 850 deletions(-)
 create mode 100644 src/tir/schedule/analysis/reducer.cc