Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Useless file I had forgotten to remove.
[simgrid.git] / examples / msg / small_deployment.xml
1 <?xml version='1.0'?>
2 <!DOCTYPE platform_description SYSTEM "surfxml.dtd">
3 <platform_description>
4   <!-- The master process (with some arguments) -->
5   <process host="Tremblay" function="master">
6      <argument value="20"/>       <!-- Number of tasks -->
7      <argument value="50000"/>    <!-- Computation size of tasks -->
8      <argument value="10"/>       <!-- 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   </process>
14   <!-- The slave process (with no argument) -->
15   <process host="Jupiter" function="slave"/>
16   <process host="Fafard" function="slave"/>
17   <process host="Ginette" function="slave"/>
18   <process host="Bourassa" function="slave"/>
19 </platform_description>