Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
3812cf4ebcf897e7689378c7c1736428cf694eda
[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 some 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   <!-- The worker processes (with no argument) -->
12   <actor host="Tremblay" function="worker">
13      <argument value="0" /> <!-- the ID of this worker -->
14   </actor>
15   <actor host="Jupiter" function="worker">
16      <argument value="1" /> <!-- the ID of this worker -->
17   </actor>
18   <actor host="Fafard" function="worker">
19      <argument value="2" /> <!-- the ID of this worker -->
20   </actor>
21   <actor host="Ginette" function="worker">
22      <argument value="3" /> <!-- the ID of this worker -->
23   </actor>
24   <actor host="Bourassa" function="worker">
25      <argument value="4" /> <!-- the ID of this worker -->
26   </actor>
27 </platform>