Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
further try at getting lua working (not quite there yet)
[simgrid.git] / src / bindings / lua / deploy.xml
1 <?xml version='1.0'?>
2 <!DOCTYPE platform SYSTEM "simgrid.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="1"/>  <!-- Amount of slaves -->
10   </process>
11   <!-- The slave process (with no argument) -->
12   <process host="Tremblay" function="slave">
13     <argument value="0"/>
14   </process>
15   <!--
16   <process host="Jupiter" function="slave">
17     <argument value="1"/>
18   </process>
19   <process host="Fafard" function="slave">
20     <argument value="2"/>
21   </process>
22   <process host="Ginette" function="slave">
23     <argument value="3"/>
24   </process>
25   <process host="Bourassa" function="slave">
26     <argument value="4"/>
27   </process>-->
28 </platform>