You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by gi...@apache.org on 2022/08/23 03:40:32 UTC

[tvm] branch last-successful updated (902343a817 -> 8e95bba697)

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

github-bot pushed a change to branch last-successful
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)
     add 8e95bba697 Remove mutable defaults in mlp_model (#12546)

No new revisions were added by this update.

Summary of changes:
 include/tvm/tir/analysis.h                       |  11 ++
 python/tvm/meta_schedule/cost_model/mlp_model.py |  37 ++++---
 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 ++++++++++++++
 9 files changed, 259 insertions(+), 20 deletions(-)
 create mode 100644 src/tir/analysis/oob_checker.cc
 create mode 100644 tests/python/unittest/test_tir_analysis_oob.py