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 e1917f4943 [TIR] Fix an index out of bound issue of compact buffer
region (#11201)
add 01e160616f [MetaSchedule] Logging Interface Unification (#11157)
No new revisions were added by this update.
Summary of changes:
include/tvm/meta_schedule/apply_history_best.h | 5 +-
include/tvm/meta_schedule/task_scheduler.h | 23 +++-
include/tvm/meta_schedule/tune_context.h | 5 +
python/tvm/meta_schedule/apply_history_best.py | 13 +-
python/tvm/meta_schedule/builder/local_builder.py | 6 +-
python/tvm/meta_schedule/runner/local_runner.py | 5 +-
python/tvm/meta_schedule/runner/rpc_runner.py | 2 +-
.../meta_schedule/task_scheduler/gradient_based.py | 5 +
.../meta_schedule/task_scheduler/round_robin.py | 5 +
.../meta_schedule/task_scheduler/task_scheduler.py | 6 +
.../testing/tune_relay_meta_schedule.py | 6 +-
.../meta_schedule/testing/tune_te_meta_schedule.py | 6 +-
python/tvm/meta_schedule/tune.py | 145 +++++++++++++++++++--
python/tvm/meta_schedule/tune_context.py | 12 +-
python/tvm/meta_schedule/utils.py | 94 ++++++++++++-
src/meta_schedule/apply_history_best.cc | 10 +-
.../measure_callback/echo_statistics.cc | 27 ++--
.../schedule_rule/cross_thread_reduction.cc | 10 +-
.../schedule_rule/multi_level_tiling.cc | 2 +-
.../search_strategy/evolutionary_search.cc | 23 ++--
.../space_generator/post_order_apply.cc | 8 +-
src/meta_schedule/task_scheduler/gradient_based.cc | 28 ++--
src/meta_schedule/task_scheduler/round_robin.cc | 16 ++-
src/meta_schedule/task_scheduler/task_scheduler.cc | 37 +++---
src/meta_schedule/tune_context.cc | 5 +-
src/meta_schedule/utils.h | 48 +++++++
.../unittest/test_meta_schedule_tune_relay.py | 4 +-
27 files changed, 451 insertions(+), 105 deletions(-)