Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add dummy instruction to please sonar.
[simgrid.git] / examples / platforms / bypassASroute.xml
1 <?xml version='1.0'?>
2 <!DOCTYPE platform SYSTEM "http://simgrid.gforge.inria.fr/simgrid/simgrid.dtd">
3 <platform version="4.1">
4   <zone id="AS0" routing="Full">
5     <cluster id="my_cluster_1" prefix="" suffix="" radical="1" speed="1Gf" bw="125MBps" lat="50us"/>
6     <cluster id="my_cluster_2" prefix="" suffix="" radical="2" speed="1Gf" bw="125MBps" lat="50us"/>
7     <cluster id="my_cluster_3" prefix="" suffix="" radical="3" speed="1Gf" bw="125MBps" lat="50us"/>
8
9     <link id="link1" bandwidth="1.25GBps" latency="500us"/>
10     <link id="link2" bandwidth="1.25GBps" latency="500us"/>
11     <link id="link3" bandwidth="1.25GBps" latency="500us"/>
12
13     <link id="link_tmp"  bandwidth="1.25GBps" latency="500us"/>
14
15     <zoneRoute src="my_cluster_1" dst="my_cluster_2" gw_src="my_cluster_1_router" gw_dst="my_cluster_2_router">
16       <link_ctn id="link1"/>
17       <link_ctn id="link2"/>
18     </zoneRoute>
19     <zoneRoute src="my_cluster_1" dst="my_cluster_3" gw_src="my_cluster_1_router" gw_dst="my_cluster_3_router">
20       <link_ctn id="link1"/>
21       <link_ctn id="link3"/>
22     </zoneRoute>
23     <zoneRoute src="my_cluster_2" dst="my_cluster_3" gw_src="my_cluster_2_router" gw_dst="my_cluster_3_router">
24       <link_ctn id="link2"/>
25       <link_ctn id="link3"/>
26     </zoneRoute>
27
28     <bypassASroute src="my_cluster_1" dst="my_cluster_2" gw_src="my_cluster_1_router" gw_dst="my_cluster_2_router">
29       <link_ctn id="link_tmp"/>
30     </bypassASroute>
31   </zone>
32 </platform>