Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
25057965ae81470285ebe816472bb52e9571c9c4
[simgrid.git] / examples / platforms / storage / remote_io.xml
1 <?xml version='1.0'?>
2 <!DOCTYPE platform SYSTEM "http://simgrid.gforge.inria.fr/simgrid/simgrid.dtd">
3 <platform version="4">
4   <config><prop id="path" value="../examples/platforms/"/></config>
5
6   <AS id="AS0" routing="Full">
7     <storage_type id="SATA-II_HDD" size="500GB" model="linear_no_lat"
8                   content_type="txt_unix" content="content/small_content.txt">
9       <model_prop id="Bread" value="92MBps"/> 
10       <model_prop id="Bwrite" value="62MBps"/> 
11       <model_prop id="Bconnection" value="122MBps"/> 
12     </storage_type>
13
14     <storage id="Disk1" typeId="SATA-II_HDD" attach="carl"/>
15
16     <storage id="Disk2" typeId="SATA-II_HDD" attach="dave"
17              content_type="txt_windows" content="content/win_storage_content.txt" />
18
19     <host id="alice" speed="1Gf">
20       <mount storageId="Disk2" name="c:"/>
21     </host>
22     <host id="bob" speed="1Gf">
23       <mount storageId="Disk1" name="/scratch"/>
24     </host>
25     <host id="carl" speed="1Gf">
26       <mount storageId="Disk1" name="/scratch"/>
27     </host>
28     <host id="dave" speed="1Gf">
29       <mount storageId="Disk2" name="c:"/>
30     </host>
31
32     <link id="link1" bandwidth="125MBps" latency="50us"/>
33     <link id="link2" bandwidth="125MBps" latency="50us"/>
34     <link id="link3" bandwidth="125MBps" latency="50us"/>
35     <link id="link4" bandwidth="125MBps" latency="50us"/>
36     <link id="link5" bandwidth="125MBps" latency="50us"/>
37     <link id="link6" bandwidth="125MBps" latency="50us"/>
38
39     <route src="alice" dst="bob" symmetrical="YES"><link_ctn id="link1"/></route>
40     <route src="alice" dst="carl" symmetrical="YES"><link_ctn id="link2"/></route>
41     <route src="alice" dst="dave" symmetrical="YES"><link_ctn id="link3"/></route>
42     <route src="bob" dst="carl" symmetrical="YES"><link_ctn id="link4"/></route>
43     <route src="bob" dst="dave" symmetrical="YES"><link_ctn id="link5"/></route>
44     <route src="carl" dst="dave" symmetrical="YES"><link_ctn id="link6"/></route>
45   </AS>
46 </platform>