Logo AND Algorithmique Numérique Distribuée

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