Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Metaschedule] Add utility API to ease using manual schedules #10876

Merged
merged 9 commits into from
Apr 5, 2022
Prev Previous commit
Next Next commit
Merge remote-tracking branch 'upstream/main' into tir-manual-schedule…
…-api
  • Loading branch information
masahi committed Apr 2, 2022
commit bdfd8e482617dd42bb9f963bf4f63c0d7560ad63
8 changes: 4 additions & 4 deletions tests/python/unittest/test_meta_schedule_tune_relay.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ def test_meta_schedule_tune_relay(
config=ReplayTraceConfig(
num_trials_per_iter=32,
max_trials_per_task=32,
max_trials_global=32,
max_trials_global=20000,
),
work_dir=work_dir,
database=JSONDatabase(
Expand Down Expand Up @@ -491,9 +491,9 @@ def manual_tir_common(do_tune=False):
)
)
config = ReplayTraceConfig(
num_trials_per_iter=32,
max_trials_per_task=32,
max_trials_global=32,
num_trials_per_iter=64,
max_trials_per_task=64,
max_trials_global=20000,
)

with tempfile.TemporaryDirectory() as work_dir:
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.