Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
snake_case s4u::Mutex
[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" content="content/small_content.txt">
10       <model_prop id="Bread" value="92MBps"/> 
11       <model_prop id="Bwrite" value="62MBps"/> 
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="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">
40       <link_ctn id="link1"/>
41     </route>
42     <route src="alice" dst="carl">
43       <link_ctn id="link2"/>
44     </route>
45     <route src="alice" dst="dave">
46       <link_ctn id="link3"/>
47     </route>
48     <route src="bob" dst="carl">
49       <link_ctn id="link4"/>
50     </route>
51     <route src="bob" dst="dave">
52       <link_ctn id="link5"/>
53     </route>
54     <route src="carl" dst="dave">
55       <link_ctn id="link6"/>
56     </route>
57   </zone>
58 </platform>