-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added option to pass arbitrary OPT pass to Tetrisched (#96)
* Added option to pass arbitrary OPT pass * Added sample config
- Loading branch information
1 parent
92ca706
commit ca9d241
Showing
8 changed files
with
230 additions
and
100 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# Output configuration. | ||
--log_dir=experiments/timing_check/final | ||
|
||
--log_file_name=alibaba_trace_replay.log | ||
--csv_file_name=alibaba_trace_replay.csv | ||
--log_level=debug | ||
|
||
# Worker configuration. | ||
--worker_profile_path=profiles/workers/alibaba_cluster_30k_slots.yaml | ||
|
||
# Workload configuration. | ||
--execution_mode=replay | ||
--replay_trace=alibaba | ||
--workload_profile_paths=traces/alibaba-cluster-trace-v2018/alibaba_filtered_new_alind_easy_dags_till_30k_cpu_usage.pkl,traces/alibaba-cluster-trace-v2018/medium_filtered.pkl,traces/alibaba-cluster-trace-v2018/hard_filtered.pkl | ||
--workload_profile_path_labels=easy,medium,hard | ||
--override_release_policies=poisson,poisson,poisson | ||
--override_num_invocations=0,350,650 | ||
--override_poisson_arrival_rates=0.0075,0.013,0.025 | ||
--randomize_start_time_max=50 | ||
--min_deadline_variances=25,50,10 | ||
--max_deadline_variances=50,100,25 | ||
|
||
# Loader configuration. | ||
--alibaba_loader_task_cpu_usage_random | ||
--alibaba_loader_task_cpu_usage_min=120 | ||
--alibaba_loader_task_cpu_usage_max=1500 | ||
--alibaba_loader_task_cpu_multiplier=1 | ||
--alibaba_loader_min_critical_path_runtimes=200,500,600 | ||
--alibaba_loader_max_critical_path_runtimes=500,1000,1000 | ||
|
||
# Scheduler configuration. | ||
--scheduler=TetriSched | ||
--release_taskgraphs | ||
--enforce_deadlines | ||
--scheduler_time_discretization=1 | ||
# --scheduler_enable_optimization_pass | ||
--retract_schedules | ||
# --scheduler_dynamic_discretization | ||
--opt_passes=CRITICAL_PATH_PASS | ||
--opt_passes=DYNAMIC_DISCRETIZATION_PASS | ||
--opt_passes=CAPACITY_CONSTRAINT_PURGE_PASS | ||
--scheduler_max_time_discretization=8 | ||
--scheduler_max_occupancy_threshold=0.999 | ||
--finer_discretization_at_prev_solution | ||
--finer_discretization_window=4 | ||
--scheduler_selective_rescheduling | ||
--scheduler_reconsideration_period=0.6 | ||
--scheduler_runtime=0 | ||
--random_seed=42066545 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.