-
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.
Merge branch 'port-flowlessly' into flow-scheduler
- Loading branch information
Showing
34 changed files
with
4,011 additions
and
2,184 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
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,27 @@ | ||
# Output configs. | ||
--log=./hetero_task_dag_aware_period_30_d_320_invoc_10.log | ||
--log_level=debug | ||
--csv=./hetero_task_dag_aware_period_30_d_320_invoc_10.csv | ||
|
||
# Task configs. | ||
--runtime_variance=0 | ||
|
||
# Scheduler configs. | ||
#--scheduler=TetriSched_Gurobi | ||
--scheduler=TetriSched_Gurobi | ||
|
||
--scheduler_runtime=0 | ||
--enforce_deadlines | ||
--retract_schedules | ||
--release_taskgraphs | ||
--noscheduler_enable_batching | ||
# --scheduler_log_times=0 | ||
# --scheduler_log_times=53 | ||
--drop_skipped_tasks | ||
# --scheduler_plan_ahead=7000 | ||
--scheduler_time_discretization=1 | ||
|
||
# Execution mode configs. | ||
--execution_mode=yaml | ||
--workload_profile_path=./profiles/workload/new_av_workload.yaml | ||
--worker_profile_path=./profiles/workers/new_av_worker_profile.json |
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,26 @@ | ||
# Output configs. | ||
--log=./hetero_task_dag_unaware_period_30_d_320_invoc_10.log | ||
--log_level=debug | ||
--csv=./hetero_task_dag_unaware_period_30_d_320_invoc_10.csv | ||
|
||
# Task configs. | ||
--runtime_variance=0 | ||
|
||
# Scheduler configs. | ||
#--scheduler=TetriSched_Gurobi | ||
--scheduler=TetriSched_Gurobi | ||
--scheduler_runtime=0 | ||
--enforce_deadlines | ||
--retract_schedules | ||
# --release_taskgraphs | ||
--noscheduler_enable_batching | ||
# --scheduler_log_times=0 | ||
# --scheduler_log_times=0 | ||
--drop_skipped_tasks | ||
# --scheduler_plan_ahead=7000 | ||
--scheduler_time_discretization=1 | ||
|
||
# Execution mode configs. | ||
--execution_mode=yaml | ||
--workload_profile_path=./profiles/workload/new_av_workload.yaml | ||
--worker_profile_path=./profiles/workers/new_av_worker_profile.json |
Large diffs are not rendered by default.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
[ | ||
{ | ||
"name": "WorkerPool_1", | ||
"workers": [ | ||
{ | ||
"name": "Worker_1_1", | ||
"resources": [ | ||
{ | ||
"name": "Slot", | ||
"quantity": 2 | ||
} | ||
] | ||
} | ||
] | ||
} | ||
] |
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,56 @@ | ||
# Implementation of a simple AV workload for testing the ILP soltuions. | ||
# This workload involves a straight-line invocation of the major | ||
# components of an AV and is being used to understand how the ILP | ||
# manages to solve the happens-before dependency problem. | ||
graphs: | ||
- name: AutonomousVehicle | ||
graph: | ||
- name: Sensor | ||
work_profile: SensorProfile | ||
children: ["Perception"] | ||
- name: Perception | ||
work_profile: PerceptionProfile | ||
children: ["Prediction"] | ||
- name: Prediction | ||
work_profile: PredictionProfile | ||
children: ["Planning"] | ||
- name: Planning | ||
work_profile: PlanningProfile | ||
children: ["Control"] | ||
- name: Control | ||
work_profile: ControlProfile | ||
release_policy: fixed | ||
period: 30 # In us for now. | ||
invocations: 10 | ||
deadline_variance: [320, 320] | ||
profiles: | ||
- name: SensorProfile | ||
execution_strategies: | ||
- batch_size: 1 | ||
runtime: 10 | ||
resource_requirements: | ||
Slot:any: 1 | ||
- name: PerceptionProfile | ||
execution_strategies: | ||
- batch_size: 1 | ||
runtime: 10 | ||
resource_requirements: | ||
Slot:any: 1 | ||
- name: PredictionProfile | ||
execution_strategies: | ||
- batch_size: 1 | ||
runtime: 40 | ||
resource_requirements: | ||
Slot:any: 2 | ||
- name: PlanningProfile | ||
execution_strategies: | ||
- batch_size: 1 | ||
runtime: 10 | ||
resource_requirements: | ||
Slot:any: 1 | ||
- name: ControlProfile | ||
execution_strategies: | ||
- batch_size: 1 | ||
runtime: 10 | ||
resource_requirements: | ||
Slot:any: 1 |
Oops, something went wrong.