Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
This time, hopefully, the files are in valid version 2 of the DTD
[simgrid.git] / teshsuite / simdag / network / p2p / platform_2p_1bb.xml
1 <?xml version='1.0'?>
2 <!DOCTYPE platform SYSTEM "surfxml.dtd">
3 <platform version="2">
4         
5         <host id="cpu0" power="1" />
6         <host id="cpu1" power="1" />
7         
8         <!-- 
9         large latency backbone
10         10000 because
11         20000 is MAX_TCP_WIN_SIZE
12         max bw = MAX_TCP_WIN_SIZE / ( 2 * latency )
13         which is then 1 and 1 is smallest possible
14          -->
15         
16         <link id="link0" bandwidth="2" latency="10000"
17                 sharing_policy="SHARED" />
18         
19         <route src="cpu0" dst="cpu1">
20                 <link:ctn id="link0" />
21         </route>
22         
23         <route src="cpu1" dst="cpu0">
24                 <link:ctn id="link0" />
25         </route>
26         
27 </platform>