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/02 09:53:23 UTC

[tvm] branch main updated (0cd6868 -> 756debc)

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

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


    from 0cd6868  [microNPU] Fixing imports in the entry point (#9624)
     add 756debc  [TIR][USMP] Greedy memory planning algorithm (#9214)

No new revisions were added by this update.

Summary of changes:
 python/tvm/tir/usmp/utils.py                       |   8 -
 src/tir/usmp/algo/greedy.cc                        | 233 +++++++
 src/tir/usmp/analysis/extract_buffer_info.cc       | 130 ++--
 tests/python/unittest/test_tir_usmp_algo.py        | 676 +++++++++++++++++++++
 .../test_tir_usmp_analysis_extract_bufferinfo.py   | 574 ++++++++++-------
 5 files changed, 1341 insertions(+), 280 deletions(-)
 create mode 100644 src/tir/usmp/algo/greedy.cc
 create mode 100644 tests/python/unittest/test_tir_usmp_algo.py