-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeployments.xml
44 lines (40 loc) · 1.25 KB
/
deployments.xml
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
<optimization name="SAACO" desc="description">
<mapping to="cores" />
<!-- Other options:
<mapping to="processors" />
<mapping to="nodes" />
<mapping to="hw-threads" /> -->
<deployments>
<!-- All task numbers (t) are determined by the STG file
that describes the software model. All processing
unit numbers (u) are determined by the logical ids
stored inside the system xml -->
<deployment id="0">
<deploy t="1" u="5" />
<deploy t="2" u="2" />
<deploy t="0" u="8" />
<deploy t="3" u="11" />
<deploy t="4" u="2" />
<deploy t="5" u="5" />
<score makespan="232" physical_time="123" />
</deployment>
<deployment id="1">
<deploy t="1" u="11" />
<deploy t="2" u="2" />
<deploy t="0" u="5" />
<deploy t="3" u="8" />
<deploy t="4" u="2" />
<deploy t="5" u="5" />
<score makespan="232" physical_time="123" />
</deployment>
<deployment id="2">
<deploy t="1" u="8" />
<deploy t="2" u="5" />
<deploy t="0" u="2" />
<deploy t="3" u="11" />
<deploy t="4" u="5" />
<deploy t="5" u="5" />
<score makespan="232" physical_time="123" />
</deployment>
</deployments>
</optimization>