Logo AND Algorithmique Numérique Distribuée

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