Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Massive cleanup in masterslave
[simgrid.git] / examples / msg / masterslave-mailbox / masterslave-mailbox-multicore_d.xml
1 <?xml version='1.0'?>
2 <!DOCTYPE platform SYSTEM "http://simgrid.gforge.inria.fr/simgrid/simgrid.dtd">
3 <platform version="4">
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="6"/>         <!-- Number of slaves -->
10   </process>
11   <!-- The slave processes (with mailbox to listen on as argument) -->
12   <process host="Tremblay" function="slave">   <argument value="0"/> </process>
13   <process host="Tremblay" function="slave">   <argument value="1"/> </process>
14   <process host="Tremblay" function="slave">   <argument value="2"/> </process>
15   <process host="Tremblay" function="slave">   <argument value="3"/> </process>
16   <process host="Tremblay" function="slave">   <argument value="4"/> </process>
17   <process host="Tremblay" function="slave">   <argument value="5"/> </process>
18 </platform>