Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
This time, hopefully, the files are in valid version 2 of the DTD
[simgrid.git] / examples / msg / masterslave / deployment_masterslave.xml
1 <?xml version='1.0'?>
2 <!DOCTYPE platform SYSTEM "surfxml.dtd">
3 <platform version="2">
4   <!-- The master process (with some arguments) -->
5   <process 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="Jupiter"/>  <!-- First slave -->
10      <argument value="Fafard"/>   <!-- Second slave -->
11      <argument value="Ginette"/>  <!-- Third slave -->
12      <argument value="Bourassa"/> <!-- Last slave -->
13      <argument value="Tremblay"/> <!-- Me! I can work too! -->
14   </process>
15   <!-- The slave process (with no argument) -->
16   <process host="Tremblay" function="slave"/>
17   <process host="Jupiter" function="slave"/>
18   <process host="Fafard" function="slave"/>
19   <process host="Ginette" function="slave"/>
20   <process host="Bourassa" function="slave"/>
21 </platform>