Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
few smells less in MC
[simgrid.git] / examples / platforms / storage / storage.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="single_HDD" size="500GiB" content="content/storage_content.txt">
10       <model_prop id="Bwrite" value="30MBps" />
11       <model_prop id="Bread" value="100MBps" />
12       <model_prop id="Bconnection" value="120MBps" />
13     </storage_type>
14
15     <storage_type id="single_SSD" size="500GiB" content="content/storage_content.txt">
16       <model_prop id="Bwrite" value="60MBps" />
17       <model_prop id="Bread" value="200MBps" />
18       <model_prop id="Bconnection" value="220MBps" />
19     </storage_type>
20
21     <storage id="Disk1" typeId="single_HDD" attach="bob" />
22     <storage id="Disk2" typeId="single_SSD" attach="alice"
23              content="content/win_storage_content.txt"/>
24     <storage id="Disk3" typeId="single_HDD" attach="carl" />
25     <storage id="Disk4" typeId="single_SSD" attach="denise"
26              content="content/small_content.txt" />
27
28     <host id="bob" speed="1Gf">
29       <mount storageId="Disk1" name="/home"/>
30     </host>
31     <host id="alice" speed="1Gf">
32       <mount storageId="Disk2" name="c:"/>
33     </host>
34     <host id="carl" speed="1Gf">
35       <mount storageId="Disk3" name="/home"/>
36     </host>
37     <host id="denise" speed="1Gf">
38       <mount storageId="Disk2" name="c:"/>
39       <mount storageId="Disk4" name="/home"/>
40     </host>
41
42     <link id="link1" bandwidth="125MBps" latency="150us" />
43
44     <route src="bob" dst="alice">
45       <link_ctn id="link1" />
46     </route>
47   </zone>
48 </platform>