You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by mb...@apache.org on 2021/12/10 17:18:14 UTC

[tvm] branch main updated (bedc772 -> e785b26)

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

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


    from bedc772  [microNPU] Add support for SPLIT and SPLIT_V (#9621)
     add e785b26  [TIR] Allow memory (aka storage) scopes to be retrieved/applied to PrimFuncs (#9689)

No new revisions were added by this update.

Summary of changes:
 include/tvm/target/se_scope.h                      |   7 +-
 include/tvm/tir/buffer.h                           |   2 +-
 include/tvm/tir/stmt_functor.h                     |   1 +
 include/tvm/tir/var.h                              |   2 +-
 python/tvm/tir/analysis/analysis.py                |  68 +++
 src/tir/analysis/device_constraint_utils.cc        | 514 +++++++++++++++++++++
 src/tir/analysis/device_constraint_utils.h         |  98 ++++
 .../tir/analysis/test_device_constraint_utils.py   |  70 +++
 8 files changed, 759 insertions(+), 3 deletions(-)
 create mode 100644 src/tir/analysis/device_constraint_utils.cc
 create mode 100644 src/tir/analysis/device_constraint_utils.h
 create mode 100644 tests/python/tir/analysis/test_device_constraint_utils.py