Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix search paths for test "simdag-test-lua".
[simgrid.git] / examples / platforms / storage.xml
1 <?xml version='1.0'?>
2 <!DOCTYPE platform SYSTEM "http://simgrid.gforge.inria.fr/simgrid.dtd">
3
4 <platform version="3">
5
6 <config>
7         <prop id="path" value="../examples/platforms/"/>
8 </config>
9
10         <AS id="AS0" routing="Full">
11
12                 <storage_type id="samsung" model="RAID5" content="content/storage_content.txt" size="500">
13                         <prop id="Bwrite" value="30000000" /> <!-- 30Mo/s -->
14                         <prop id="Bread" value="100000000" /> <!-- 100Mo/s -->
15                         <prop id="Bconnection" value="150000000" /> <!-- 150Mo/s -->
16                 </storage_type>
17
18                 <storage_type id="crucial" model="SSD" content="content/storage_content.txt" size="500">
19                         <prop id="Bwrite" value="30000000" />
20                         <prop id="Bread" value="100000000" />
21                         <prop id="Bconnection" value="150000000" />
22                 </storage_type>
23
24                 <storage_type id="wdigital" model="RAID0" content="content/storage_content.txt" size="500">
25                         <prop id="Bwrite" value="30000000" />
26                         <prop id="Bread" value="100000000" />
27                         <prop id="Bconnection" value="150000000" />
28                 </storage_type>
29
30                 <storage id="Disk1" typeId="crucial"/>
31                 <storage id="Disk2" typeId="samsung"/>
32                 <storage id="Disk3" typeId="wdigital"/>
33                 <storage id="Disk4" typeId="wdigital"/>
34
35                 <host id="bob" power="1000000000">
36                         <mount id="Disk1" name="/home"/>                        
37                 </host>         
38                 
39                 <host id="alice" power="1000000000">
40                         <mount id="Disk2" name="/home"/>
41                 </host>
42
43                 <host id="carl" power="1000000000">             
44                         <mount id="Disk3" name="/home"/>                
45                 </host>
46                 
47                 <host id="denise" power="1000000000">
48                         <mount id="Disk4" name="/home"/>        
49                 </host>
50
51                 <link id="link1" bandwidth="125000000" latency="5E-5" />
52                 <link id="link2" bandwidth="125000000" latency="5E-5" />
53                 <link id="link3" bandwidth="125000000" latency="5E-5" />
54         
55                 <route src="bob" dst="alice" symmetrical="YES">
56                         <link_ctn id="link1" />
57                         <link_ctn id="link2" />
58                         <link_ctn id="link3" />
59                 </route>        
60
61         </AS>
62 </platform>