Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update msg-storage tesh
[simgrid.git] / teshsuite / msg / storage / platform.xml
1 <?xml version='1.0'?>
2 <!DOCTYPE platform SYSTEM "http://simgrid.gforge.inria.fr/simgrid.dtd">
3
4 <platform version="3">
5         <AS id="AS0" routing="Full">
6                 <!-- STORAGE TYPES -->
7                 <storage_type id="crucial" model="SSD" size="500">
8                         <prop id="Bwrite" value="30000000" /> <!-- 30Mo/s -->
9                         <prop id="Bread" value="100000000" /> <!-- 100Mo/s -->
10                         <prop id="Bconnection" value="150000000" /> <!-- 150Mo/s -->
11                 </storage_type>
12
13                 <storage_type id="single_HDD" model="linear_no_lat" size="500GiB" content_type="txt_unix">
14                         <prop id="Bwrite" value="30MBps" />
15                         <prop id="Bread" value="100MBps" />
16                         <prop id="Bconnection" value="150MBps" />
17                 </storage_type>
18
19                 <storage_type id="single_SSD" model="linear_no_lat"
20                         content="content/storage_content.txt" size="500GiB">
21                         <prop id="Bwrite" value="30MBps" />
22                         <prop id="Bread" value="100MBps" />
23                         <prop id="Bconnection" value="150MBps" />
24                 </storage_type>
25
26                 <!-- DISKS -->
27                 <storage id="cdisk" typeId="single_HDD" content="msg/storage/storage_content_c.txt">
28                    <prop id="filename" value="prop.xml"/>
29                    <prop id="date" value="31-08-12"/>
30            <prop id="author" value="pnavarro"/>
31                 </storage>
32                 <storage id="sdisk1" typeId="single_SSD" content="msg/storage/storage_content_s1.txt" />
33                 <storage id="sdisk2" typeId="single_HDD" content="msg/storage/storage_content_s2.txt" />
34
35                 <!-- HOSTS -->
36                 <host id="client" power="1000000000">
37                         <mount storageId="cdisk" name="/sd1" />
38                 </host>
39
40                 <host id="server" power="1000000000">
41                         <mount storageId="sdisk1" name="/sd1" />
42                         <mount storageId="sdisk2" name="/sd2" />
43                         <prop id="ip adress" value="127.0.0.5"/>
44                 </host>
45
46                 <!-- LINKS & ROUTES -->
47                 <link id="link" bandwidth="125MBps" latency="50us" />
48
49                 <route src="client" dst="server" symmetrical="YES">
50                         <link_ctn id="link" />
51                 </route>
52         </AS>
53 </platform>