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/04/08 01:34:51 UTC

[tvm] branch last-successful updated (00c830ece0 -> 5f1f8f3421)

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 00c830ece0 relax reorder primitive's  affineness check (#10887)
     add e97a3ebfc4 [microNPU] Fix bug in microNPU demo app (#10930)
     add 05bb482526 [microNPU] Set output tolerance of codegen and network tests to 0 (#10675)
     add 5f1f8f3421 [MetaSchedule][Refactor] Clarify Integration Logic (#10927)

No new revisions were added by this update.

Summary of changes:
 apps/microtvm/ethosu/convert_image.py              |   3 +-
 apps/microtvm/ethosu/run_demo.sh                   |   4 +-
 include/tvm/meta_schedule/apply_history_best.h     |  83 +++++++
 include/tvm/meta_schedule/extracted_task.h         |  68 ++++++
 include/tvm/meta_schedule/integration.h            | 190 ----------------
 python/tvm/meta_schedule/__init__.py               |   4 +-
 python/tvm/meta_schedule/apply_history_best.py     | 100 +++++++++
 python/tvm/meta_schedule/extracted_task.py         |  66 ++++++
 python/tvm/meta_schedule/integration.py            | 247 ---------------------
 python/tvm/meta_schedule/relay_integration.py      |  91 ++++++++
 python/tvm/meta_schedule/testing/relay_workload.py |   2 +-
 .../testing/tune_relay_meta_schedule.py            |   5 +-
 python/tvm/meta_schedule/testing/utils.py          |  32 +--
 python/tvm/meta_schedule/tune.py                   |  15 +-
 .../{integration.cc => apply_history_best.cc}      |  90 +++-----
 .../extracted_task.cc}                             |  47 ++--
 src/meta_schedule/utils.h                          |   1 +
 src/relay/backend/task_extraction.cc               |   7 +-
 src/relay/backend/te_compiler_cache.cc             |  21 +-
 tests/python/contrib/test_ethosu/infra.py          |  30 ++-
 tests/python/contrib/test_ethosu/test_codegen.py   |  31 +--
 tests/python/contrib/test_ethosu/test_networks.py  |  58 ++---
 .../unittest/test_meta_schedule_integration.py     |  22 +-
 .../unittest/test_meta_schedule_multi_anchor.py    |   3 +-
 .../unittest/test_meta_schedule_tune_relay.py      |  24 +-
 25 files changed, 576 insertions(+), 668 deletions(-)
 create mode 100644 include/tvm/meta_schedule/apply_history_best.h
 create mode 100644 include/tvm/meta_schedule/extracted_task.h
 delete mode 100644 include/tvm/meta_schedule/integration.h
 create mode 100644 python/tvm/meta_schedule/apply_history_best.py
 create mode 100644 python/tvm/meta_schedule/extracted_task.py
 delete mode 100644 python/tvm/meta_schedule/integration.py
 create mode 100644 python/tvm/meta_schedule/relay_integration.py
 rename src/meta_schedule/{integration.cc => apply_history_best.cc} (58%)
 copy src/{relay/op/annotation/annotation.h => meta_schedule/extracted_task.cc} (55%)