Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
delete platform msg props
[simgrid.git] / examples / msg / properties / deployment_properties.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="C1-01" function="master">
6      <argument value="1"/>       <!-- Number of tasks -->
7      <argument value="50000000"/>  <!-- Computation size of tasks -->
8      <argument value="1000000"/>   <!-- Communication size of tasks -->
9      <argument value="C1-00"/>  <!-- First slave -->
10   </process>
11   <!-- The slave process (with no argument) -->
12   <process host="C1-00" function="slave">
13     <prop id="SomeProp" value="SomeValue"/>
14   </process>
15 </platform>