Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[NS3] updated in the example to cover more execution scenarios
[simgrid.git] / examples / msg / ns3 / 3links-d.xml
1 <?xml version='1.0'?>
2 <!DOCTYPE platform SYSTEM "http://simgrid.gforge.inria.fr/simgrid.dtd">
3 <platform version="3">
4
5   <process host="S1" function="master">
6       <argument value="100000"/>
7       <argument value="C1"/>
8       <argument value="1"/>
9   </process>
10
11   <process host="C1" function="slave">
12     <argument value="1"/>
13   </process>
14
15   <process host="S2" function="master">
16       <argument value="1000000"/>
17       <argument value="C2"/>
18       <argument value="2"/>
19   </process>
20   
21   <process host="C2" function="slave">
22     <argument value="2"/>
23   </process>
24
25    
26   <process host="S3" function="master">
27       <argument value="2000000"/>
28       <argument value="C3"/>
29       <argument value="3"/>
30   </process>
31   
32   <process host="C3" function="slave">
33     <argument value="3"/>
34   </process>
35
36 <!--  <process host="C3" function="timer">
37     <argument value="0"/>
38     <argument value=".1"/>
39   </process>
40     --> 
41 </platform>