Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
c288fb51fd42029e53cc55e55d536875a37ee570
[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" size="500GiB">
20                         <prop id="Bwrite" value="30MBps" />
21                         <prop id="Bread" value="100MBps" />
22                         <prop id="Bconnection" value="150MBps" />
23                 </storage_type>
24
25                 <!-- DISKS -->
26                 <storage id="cdisk" typeId="single_HDD" content="msg/storage/storage_content_c.txt">
27                    <prop id="usage" value="scratch"/>
28                    <prop id="date" value="31-08-13"/>
29                 </storage>
30                 <storage id="sdisk1" typeId="single_SSD" content="msg/storage/storage_content_s1.txt" />
31                 <storage id="sdisk2" typeId="single_HDD" content="msg/storage/storage_content_s2.txt" />
32
33                 <!-- HOSTS -->
34                 <host id="client" power="1000000000">
35                         <mount storageId="cdisk" name="/sd1" />
36                 </host>
37
38                 <host id="server" power="1000000000">
39                         <mount storageId="sdisk1" name="/sd1" />
40                         <mount storageId="sdisk2" name="/sd2" />
41                         <prop id="ip adress" value="134.165.2.5"/>
42                 </host>
43
44                 <!-- LINKS & ROUTES -->
45                 <link id="link" bandwidth="125MBps" latency="50us" />
46
47                 <route src="client" dst="server" symmetrical="YES">
48                         <link_ctn id="link" />
49                 </route>
50         </AS>
51 </platform>