Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
MSG_file_write() bug fix + tesh files improvements
[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="500GiB">
8                         <model_prop id="Bwrite" value="30000000" /> <!-- 30Mo/s -->
9                         <model_prop id="Bread" value="100000000" /> <!-- 100Mo/s -->
10                         <model_prop id="Bconnection" value="150000000" /> <!-- 150Mo/s -->
11                 </storage_type>
12
13                 <storage_type id="single_HDD" model="linear_no_lat" size="750GiB" content_type="txt_unix">
14                         <model_prop id="Bwrite" value="30MBps" />
15                         <model_prop id="Bread" value="100MBps" />
16                         <model_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="300GiB">
21                         <model_prop id="Bwrite" value="30MBps" />
22                         <model_prop id="Bread" value="100MBps" />
23                         <model_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
29                 <storage id="sdisk1" typeId="single_SSD" content="msg/storage/storage_content_s1.txt">
30                         <prop id="usage" value="File system"/>
31                 </storage>
32                         
33                 <storage id="sdisk2" typeId="single_HDD" content="msg/storage/storage_content_s2.txt" >
34                         <prop id="usage" value="Cache"/>
35                 </storage>
36
37                 <!-- HOSTS -->
38                 <host id="client" power="1000000000">
39                         <mount storageId="cdisk" name="/sd1" />
40                 </host>
41
42                 <host id="server" power="1000000000">
43                         <mount storageId="sdisk1" name="/sd1" />
44                         <mount storageId="sdisk2" name="/sd2" />
45                         <prop id="ip adress" value="127.0.0.5"/>
46                 </host>
47
48                 <!-- LINKS & ROUTES -->
49                 <link id="link" bandwidth="125MBps" latency="50us" />
50
51                 <route src="client" dst="server" symmetrical="YES">
52                         <link_ctn id="link" />
53                 </route>
54         </AS>
55 </platform>