forked from erdos-project/erdos-scheduling-simulator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsimple_av_workload.yaml
56 lines (56 loc) · 1.73 KB
/
simple_av_workload.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
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: 0 # In us for now.
invocations: 1
deadline_variance: [2000, 2000]
profiles:
- name: SensorProfile
execution_strategies:
- batch_size: 1
runtime: 20
resource_requirements:
GPU:any: 1
- name: PerceptionProfile
execution_strategies:
- batch_size: 1
runtime: 200
resource_requirements:
GPU:any: 1
- name: PredictionProfile
execution_strategies:
- batch_size: 1
runtime: 100
resource_requirements:
GPU:any: 1
- name: PlanningProfile
execution_strategies:
- batch_size: 1
runtime: 300
resource_requirements:
GPU:any: 1
- name: ControlProfile
execution_strategies:
- batch_size: 1
runtime: 10
resource_requirements:
GPU:any: 1