Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Providing up-to-date xml files... Version 1 with units in Bytes, Flops and Seconds.
[simgrid.git] / examples / gras / all2all / all2all_deployment.xml
1 <?xml version='1.0'?>
2 <!DOCTYPE platform_description SYSTEM "surfxml.dtd">
3 <platform_description version="1">
4   <!-- For each host, we have a sender and a receiver (because we use a
5        1-port model and still don't want any deadlocks neither synchronization
6        delays).
7        Sender arguments = receiver peer
8        Receiver arguments: amount of incoming messages expected -->
9
10
11   <process host="Tremblay" function="sender">
12      <argument value="Jupiter:4000"/>
13      <argument value="Fafard:4000"/> 
14      <argument value="Ginette:4000"/> 
15      <argument value="Bourassa:4000"/> 
16   </process>
17   <process host="Tremblay" function="receiver">
18      <argument value="4000"/>
19      <argument value="4"/>  
20   </process>
21
22
23   <process host="Jupiter" function="sender">
24      <argument value="Tremblay:4000"/> 
25      <argument value="Fafard:4000"/> 
26      <argument value="Ginette:4000"/> 
27      <argument value="Bourassa:4000"/> 
28   </process>
29   <process host="Jupiter" function="receiver">
30      <argument value="4000"/>
31      <argument value="4"/>
32   </process>
33
34
35   <process host="Fafard" function="sender">
36      <argument value="Tremblay:4000"/> 
37      <argument value="Jupiter:4000"/>  
38      <argument value="Ginette:4000"/> 
39      <argument value="Bourassa:4000"/> 
40   </process>
41   <process host="Fafard" function="receiver">
42      <argument value="4000"/>
43      <argument value="4"/> 
44   </process>
45  
46  
47   <process host="Ginette" function="sender">
48      <argument value="Tremblay:4000"/> 
49      <argument value="Jupiter:4000"/>  
50      <argument value="Fafard:4000"/> 
51      <argument value="Bourassa:4000"/> 
52   </process>
53   <process host="Ginette" function="receiver">
54      <argument value="4000"/>
55      <argument value="4"/>
56   </process>
57
58
59   <process host="Bourassa" function="sender">
60      <argument value="Tremblay:4000"/> 
61      <argument value="Jupiter:4000"/>  
62      <argument value="Fafard:4000"/> 
63      <argument value="Ginette:4000"/> 
64   </process>
65   <process host="Bourassa" function="receiver">
66      <argument value="4000"/>
67      <argument value="4"/>
68   </process>
69 </platform_description>