Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
stupid old gcc. That's initialized.
[simgrid.git] / examples / platforms / remote_io.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     <storage_type id="SATA-II_HDD" size="500GB"
12                   content_type="txt_unix" 
13                   content="content/small_content.txt" 
14                   model="linear_no_lat">
15       <model_prop id="Bread" value="92MBps"/> 
16       <model_prop id="Bwrite" value="62MBps"/> 
17       <model_prop id="Bconnection" value="122MBps"/> 
18     </storage_type>
19
20     <storage id="Disk1" typeId="SATA-II_HDD"
21              attach="carl"/>
22
23     <storage id="Disk2" typeId="SATA-II_HDD"
24              attach="dave"
25              content_type="txt_windows" 
26              content="content/win_storage_content.txt" />
27
28     <host id="alice" power="1Gf">
29       <mount storageId="Disk2" name="c:"/>                      
30     </host>
31
32     <host id="bob" power="1Gf">
33       <mount storageId="Disk1" name="/scratch"/>                        
34     </host>
35
36     <host id="carl" power="1Gf">
37       <mount storageId="Disk1" name="/scratch"/>                        
38     </host>
39
40     <host id="dave" power="1Gf">
41       <mount storageId="Disk2" name="c:"/>                      
42     </host>
43
44     <link id="link1" bandwidth="125MBps" 
45           latency="50us"/>
46
47     <link id="link2" bandwidth="125MBps" 
48           latency="50us"/>
49
50     <link id="link3" bandwidth="125MBps" 
51           latency="50us"/>
52
53     <link id="link4" bandwidth="125MBps" 
54           latency="50us"/>
55
56     <link id="link5" bandwidth="125MBps" 
57           latency="50us"/>
58
59     <link id="link6" bandwidth="125MBps" 
60           latency="50us"/>
61
62     <route src="alice" dst="bob" symmetrical="YES">
63       <link_ctn id="link1"/>
64     </route>
65
66     <route src="alice" dst="carl" symmetrical="YES">
67       <link_ctn id="link2"/>
68     </route>
69
70     <route src="alice" dst="dave" symmetrical="YES">
71       <link_ctn id="link3"/>
72     </route>
73
74     <route src="bob" dst="carl" symmetrical="YES">
75       <link_ctn id="link4"/>
76     </route>
77
78     <route src="bob" dst="dave" symmetrical="YES">
79       <link_ctn id="link5"/>
80     </route>
81
82     <route src="carl" dst="dave" symmetrical="YES">
83       <link_ctn id="link6"/>
84     </route>
85   </AS>
86 </platform>