You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by an...@apache.org on 2022/08/22 20:35:47 UTC

[tvm] branch main updated (902343a817 -> 1e399fa451)

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

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


    from 902343a817 [BugFix][UMA] Fix order issue in uma_lower  (#12447)
     add 1e399fa451 [TIR] Add pass to check for out of bounds memory access (#12352)

No new revisions were added by this update.

Summary of changes:
 include/tvm/tir/analysis.h                     |  11 +++
 python/tvm/tir/analysis/analysis.py            |  11 +++
 src/arith/int_set.cc                           |   4 +-
 src/ir/transform.cc                            |   2 +-
 src/tir/analysis/oob_checker.cc                | 130 +++++++++++++++++++++++++
 src/tir/schedule/error.cc                      |   4 +-
 tests/python/unittest/test_arith_intset.py     |   2 +-
 tests/python/unittest/test_tir_analysis_oob.py |  78 +++++++++++++++
 8 files changed, 237 insertions(+), 5 deletions(-)
 create mode 100644 src/tir/analysis/oob_checker.cc
 create mode 100644 tests/python/unittest/test_tir_analysis_oob.py