You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by ju...@apache.org on 2021/12/16 23:30:30 UTC

[tvm] branch main updated (aa86dc0 -> 405fa23)

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

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


    from aa86dc0  [CUTLASS] Support conv2d activation fusion (#9746)
     add 405fa23  [TIR][Schedule] Add Annotate/Unannotate primitive (#9742)

No new revisions were added by this update.

Summary of changes:
 include/tvm/tir/schedule/schedule.h                |  28 ++++
 python/tvm/script/tir/scope_handler.py             |   4 +-
 python/tvm/script/tir/special_stmt.py              |   5 +-
 python/tvm/tir/schedule/schedule.py                | 125 ++++++++++++++-
 src/tir/schedule/concrete_schedule.cc              |  47 ++++++
 src/tir/schedule/concrete_schedule.h               |  12 ++
 src/tir/schedule/primitive.h                       |  17 +++
 src/tir/schedule/primitive/annotate.cc             | 170 +++++++++++++++++++++
 src/tir/schedule/schedule.cc                       |  26 ++++
 src/tir/schedule/traced_schedule.cc                |  38 +++++
 src/tir/schedule/traced_schedule.h                 |   4 +
 .../python/unittest/test_tir_schedule_utilities.py |  66 ++++++++
 12 files changed, 535 insertions(+), 7 deletions(-)
 create mode 100644 src/tir/schedule/primitive/annotate.cc