Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
5fc2809114869652137f24b67ea6677ae7f2e42d
[simgrid.git] / docs / source / tuto_s4u / deployment1.xml
1 <?xml version='1.0'?>
2 <!DOCTYPE platform SYSTEM "http://simgrid.gforge.inria.fr/simgrid/simgrid.dtd">
3 <platform version="4.1">
4   <!-- The master actor (with 4 arguments) -->
5   <actor host="Tremblay" function="master">
6      <argument value="5"/>         <!-- Workers count -->
7      <argument value="20"/>        <!-- Tasks count -->
8      <argument value="50000000"/>  <!-- Computation size of tasks -->
9      <argument value="1000000"/>   <!-- Communication size of tasks -->
10   </actor>
11
12   <!-- The worker processes (with one argument each: the ID of this worker) -->
13   <actor host="Tremblay" function="worker">
14      <argument value="0" />
15   </actor>
16   <actor host="Jupiter" function="worker">
17      <argument value="1" />
18   </actor>
19   <actor host="Fafard" function="worker">
20      <argument value="2" />
21   </actor>
22   <actor host="Ginette" function="worker">
23      <argument value="3" />
24   </actor>
25   <actor host="Bourassa" function="worker">
26      <argument value="4" />
27   </actor>
28 </platform>