Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Move MSG and SimDag examples out of the sight of users
[simgrid.git] / examples / deprecated / msg / app-masterworker / app-masterworker_d.xml
1 <?xml version='1.0'?>
2 <!DOCTYPE platform SYSTEM "https://simgrid.org/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     <argument value="5"/>         <!-- Number of workers -->
10   </actor>
11   <!-- The worker processes (with mailbox to listen on as argument) -->
12   <actor host="Tremblay" function="worker" on_failure="RESTART">
13     <argument value="0"/> 
14   </actor>
15   <actor host="Jupiter" function="worker" on_failure="RESTART">
16     <argument value="1"/> 
17   </actor>
18   <actor host="Fafard" function="worker" on_failure="RESTART">
19     <argument value="2"/> 
20   </actor>
21   <actor host="Ginette" function="worker" on_failure="RESTART">
22     <argument value="3"/> 
23   </actor>
24   <actor host="Bourassa" function="worker" on_failure="RESTART">
25     <argument value="4"/> 
26   </actor>
27 </platform>