Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot/simgrid/simgrid
[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.1">
4   <config>
5     <prop id="path" value="../examples/platforms/"/>
6   </config>
7
8   <zone id="AS0" routing="Full">
9     <storage_type id="SATA-II_HDD" size="500GB" model="linear_no_lat"
10                   content_type="txt_unix" content="content/small_content.txt">
11       <model_prop id="Bread" value="92MBps"/> 
12       <model_prop id="Bwrite" value="62MBps"/> 
13       <model_prop id="Bconnection" value="122MBps"/> 
14     </storage_type>
15
16     <storage id="Disk1" typeId="SATA-II_HDD" attach="carl"/>
17
18     <storage id="Disk2" typeId="SATA-II_HDD" attach="dave"
19              content_type="txt_windows" content="content/win_storage_content.txt" />
20
21     <host id="alice" speed="1Gf">
22       <mount storageId="Disk2" name="c:"/>
23     </host>
24     <host id="bob" speed="1Gf">
25       <mount storageId="Disk1" name="/scratch"/>
26     </host>
27     <host id="carl" speed="1Gf">
28       <mount storageId="Disk1" name="/scratch"/>
29     </host>
30     <host id="dave" speed="1Gf">
31       <mount storageId="Disk2" name="c:"/>
32     </host>
33
34     <link id="link1" bandwidth="125MBps" latency="50us"/>
35     <link id="link2" bandwidth="125MBps" latency="50us"/>
36     <link id="link3" bandwidth="125MBps" latency="50us"/>
37     <link id="link4" bandwidth="125MBps" latency="50us"/>
38     <link id="link5" bandwidth="125MBps" latency="50us"/>
39     <link id="link6" bandwidth="125MBps" latency="50us"/>
40
41     <route src="alice" dst="bob">
42       <link_ctn id="link1"/>
43     </route>
44     <route src="alice" dst="carl">
45       <link_ctn id="link2"/>
46     </route>
47     <route src="alice" dst="dave">
48       <link_ctn id="link3"/>
49     </route>
50     <route src="bob" dst="carl">
51       <link_ctn id="link4"/>
52     </route>
53     <route src="bob" dst="dave">
54       <link_ctn id="link5"/>
55     </route>
56     <route src="carl" dst="dave">
57       <link_ctn id="link6"/>
58     </route>
59   </zone>
60 </platform>