You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by co...@apache.org on 2021/05/25 00:09:24 UTC

[tvm] branch main updated (32608d9 -> 47c8e47)

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

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


    from 32608d9  remove self-include in runtime/container.h (#8117)
     add 47c8e47  [TensorIR][M2a] Verification of cached flags (#8114)

No new revisions were added by this update.

Summary of changes:
 include/tvm/arith/int_set.h                        |  48 +-
 include/tvm/tir/schedule/block_scope.h             |   4 +-
 include/tvm/tir/schedule/schedule.h                |   4 +-
 include/tvm/tir/schedule/state.h                   |  15 +-
 include/tvm/tir/stmt_functor.h                     |   8 +
 python/tvm/arith/__init__.py                       |   2 +-
 python/tvm/arith/int_set.py                        |  60 ++
 python/tvm/tir/schedule/schedule.py                |   4 +-
 python/tvm/tir/schedule/state.py                   |  45 +-
 src/arith/int_set.cc                               | 139 +++++
 src/printer/text_printer.h                         |   2 +
 src/printer/tvmscript_printer.cc                   |  12 +-
 src/tir/ir/stmt_functor.cc                         |  11 +
 src/tir/schedule/analysis.h                        |  44 ++
 src/tir/schedule/analysis/analysis.cc              |  68 +++
 src/tir/schedule/analysis/verify.cc                |  97 +++
 src/tir/schedule/concrete_schedule.h               |   5 +-
 src/tir/schedule/state.cc                          | 274 ++++++++-
 src/tir/schedule/utils.h                           |  60 ++
 src/tir/transforms/compact_buffer_region.cc        |  11 +-
 tests/python/unittest/test_arith_intset.py         | 106 ++++
 ...k_scope.py => test_tir_schedule_block_scope.py} |   0
 tests/python/unittest/test_tir_schedule_state.py   |   3 +-
 .../test_tir_schedule_state_cached_flags.py        | 669 +++++++++++++++++++++
 24 files changed, 1615 insertions(+), 76 deletions(-)
 rename tests/python/unittest/{test_tir_block_scope.py => test_tir_schedule_block_scope.py} (100%)
 create mode 100644 tests/python/unittest/test_tir_schedule_state_cached_flags.py