You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by wu...@apache.org on 2022/07/27 17:35:59 UTC

[tvm] branch main updated (03aed787df -> ca30e5e2e4)

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

wuwei pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/tvm.git


    from 03aed787df [microTVM] Fix timeout of -1 breaking Arduino transport (#12189)
     add ca30e5e2e4 TIR Schedule primitive - decompose_padding (#12174)

No new revisions were added by this update.

Summary of changes:
 include/tvm/tir/schedule/schedule.h                |   9 +
 python/tvm/tir/schedule/schedule.py                |  78 +++
 src/tir/schedule/concrete_schedule.cc              |   9 +
 src/tir/schedule/concrete_schedule.h               |   2 +
 src/tir/schedule/error.h                           |  32 +-
 src/tir/schedule/primitive.h                       |  11 +
 src/tir/schedule/primitive/decompose_padding.cc    | 574 +++++++++++++++++++++
 src/tir/schedule/primitive/reduction.cc            |  27 +-
 src/tir/schedule/schedule.cc                       |   5 +
 src/tir/schedule/traced_schedule.cc                |  12 +
 src/tir/schedule/traced_schedule.h                 |   2 +
 .../test_tir_schedule_decompose_padding.py         | 313 +++++++++++
 12 files changed, 1048 insertions(+), 26 deletions(-)
 create mode 100644 src/tir/schedule/primitive/decompose_padding.cc
 create mode 100644 tests/python/unittest/test_tir_schedule_decompose_padding.py