You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by kp...@apache.org on 2022/06/07 18:38:10 UTC

[tvm] branch main updated (12440895e4 -> 81702192b4)

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

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


    from 12440895e4 [MetaSchedule] Add Testing Script with ONNX Support (#11587)
     add 81702192b4 [MetaSchedule] Resolve dependencies between header files (#11604)

No new revisions were added by this update.

Summary of changes:
 include/tvm/meta_schedule/apply_history_best.h     |  9 ++-
 include/tvm/meta_schedule/arg_info.h               |  3 +
 include/tvm/meta_schedule/builder.h                |  8 +++
 include/tvm/meta_schedule/cost_model.h             | 34 ++++-------
 include/tvm/meta_schedule/database.h               |  7 +++
 include/tvm/meta_schedule/extracted_task.h         |  7 ++-
 include/tvm/meta_schedule/feature_extractor.h      | 13 ++--
 include/tvm/meta_schedule/measure_callback.h       | 11 ++--
 include/tvm/meta_schedule/measure_candidate.h      | 67 +++++++++++++++++++++
 include/tvm/meta_schedule/mutator.h                | 18 +++---
 include/tvm/meta_schedule/postproc.h               | 15 ++---
 include/tvm/meta_schedule/runner.h                 |  6 ++
 include/tvm/meta_schedule/schedule_rule.h          | 20 +++----
 include/tvm/meta_schedule/search_strategy.h        | 69 ++++------------------
 include/tvm/meta_schedule/space_generator.h        | 21 +++----
 include/tvm/meta_schedule/task_scheduler.h         | 47 ++++-----------
 include/tvm/meta_schedule/tune_context.h           |  8 +++
 src/meta_schedule/cost_model/cost_model.cc         | 24 ++++++++
 .../feature_extractor/feature_extractor.cc         |  6 ++
 .../measure_callback/measure_callback.cc           |  9 +++
 src/meta_schedule/mutator/mutator.cc               | 12 ++++
 src/meta_schedule/postproc/postproc.cc             | 11 ++++
 src/meta_schedule/schedule_rule/schedule_rule.cc   | 12 ++++
 .../search_strategy/search_strategy.cc             | 27 ++++++++-
 .../space_generator/space_generator.cc             | 12 ++++
 src/meta_schedule/task_scheduler/task_scheduler.cc | 37 ++++++++++++
 26 files changed, 344 insertions(+), 169 deletions(-)
 create mode 100644 include/tvm/meta_schedule/measure_candidate.h