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

[tvm] branch main updated (60cf692a63 -> 2af9b90ec1)

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

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


    from 60cf692a63 [Frontend][TFLite] fix detection_postprocess's non_max_suppression_attrs["force_suppress"] (#12593)
     add 2af9b90ec1 [TIR] Implement API for padded layout transformations (#12720)

No new revisions were added by this update.

Summary of changes:
 include/tvm/tir/schedule/schedule.h                |  17 +-
 python/tvm/tir/function.py                         |  46 +-
 python/tvm/tir/schedule/_type_checker.py           |   2 +-
 python/tvm/tir/schedule/schedule.py                |  42 +-
 python/tvm/tir/tensor_intrin/cuda.py               |   2 +-
 src/meta_schedule/postproc/rewrite_layout.cc       |   3 +-
 .../multi_level_tiling_tensor_core.cc              |   2 +-
 src/tir/ir/index_map.cc                            |   2 +-
 src/tir/schedule/concrete_schedule.cc              |   6 +-
 src/tir/schedule/concrete_schedule.h               |   2 +-
 src/tir/schedule/instruction_traits.h              |   4 +-
 src/tir/schedule/primitive.h                       |   4 +-
 .../schedule/primitive/layout_transformation.cc    | 910 ++++++++++++++++++++-
 src/tir/schedule/schedule.cc                       |   6 +-
 src/tir/schedule/traced_schedule.cc                |  15 +-
 src/tir/schedule/traced_schedule.h                 |   2 +-
 .../unittest/test_tir_schedule_transform_layout.py | 410 ++++++++++
 17 files changed, 1408 insertions(+), 67 deletions(-)