Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
292e3bb6f6fc6c91d165ec585a343b36f05ee57d
[simgrid.git] / examples / s4u / app-masterworkers / s4u-app-masterworkers_d.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="20"/>        <!-- Number of tasks -->
7     <argument value="50000000"/>  <!-- Computation size of tasks -->
8     <argument value="1000000"/>   <!-- Communication size of tasks -->
9     <!-- name of hosts on which the workers are running -->
10     <argument value="Tremblay"/>
11     <argument value="Jupiter" />
12     <argument value="Fafard" />
13     <argument value="Ginette" />
14     <argument value="Bourassa" />
15   </actor>
16   <!-- The worker processes (with no argument) -->
17   <actor host="Tremblay" function="worker" />
18   <actor host="Jupiter" function="worker" />
19   <actor host="Fafard" function="worker" />
20   <actor host="Ginette" function="worker" />
21   <actor host="Bourassa" function="worker" />
22 </platform>