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/05/04 00:52:09 UTC

[tvm] branch last-successful updated (eb3ce911d0 -> 184b3a9474)

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 eb3ce911d0 [Hexagon] Add schedule and test for conv2d_transpose_nchw (#11175)
     add 90084ab8db [PROFILER] Theoretical roofline models (#11066)
     add 184b3a9474 [FIX,AUTO_SCHEDULER] Handle manually unrolled loops in auto scheduler features (#11166)

No new revisions were added by this update.

Summary of changes:
 include/tvm/runtime/profiling.h                    |  15 +
 python/tvm/runtime/profiling/__init__.py           |  47 +++
 .../tvm/{micro/contrib/stm32 => utils}/__init__.py |  39 ++-
 python/tvm/utils/roofline.py                       | 315 +++++++++++++++++++++
 src/auto_scheduler/feature.cc                      |  32 +--
 src/node/structural_hash.cc                        |  13 +
 src/runtime/profiling.cc                           | 133 +++++++--
 .../python/unittest/test_auto_scheduler_feature.py |  23 +-
 tests/python/unittest/test_runtime_profiling.py    |  47 +++
 9 files changed, 601 insertions(+), 63 deletions(-)
 copy python/tvm/{micro/contrib/stm32 => utils}/__init__.py (83%)
 mode change 100755 => 100644
 create mode 100644 python/tvm/utils/roofline.py