Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
examples to demonstrate bugs in sendrecv
[simgrid.git] / examples / platforms / prop.xml
1 <?xml version='1.0'?>
2 <!DOCTYPE platform SYSTEM "simgrid.dtd">
3
4 <!-- This file describe a super simple platform which main interest is
5      to define some properties on hosts, processes and links. 
6      It is used in several regression cases on properties -->
7
8 <!-- Some properties' name is prefixed by SG_TEST_ only to simplify
9      the test of GRAS on real life: we don't want to display the whole
10      user's environment here, only the ones related to the test.
11      
12      Of course, this restriction is not needed in your own platforms. -->
13
14 <platform version="2">
15   <host id="host1" power="1000000000">
16     <prop id="SG_TEST_Hdd" value="180"/>
17     <prop id="SG_TEST_mem" value="4"/>
18   </host>
19   <host id="host2" power="1000000000">
20     <prop id="SG_TEST_Hdd" value="120"/>
21   </host>
22   <link id="l1" bandwidth="125000000" latency="0.000100">
23     <prop id="type" value="Ethernet"/>
24   </link>
25   <link id="l2" bandwidth="125000000" latency="0.000100">
26     <prop id="type" value="ethernet"/>
27   </link>
28   <route src="host1" dst="host2"><link:ctn id="l1"/><link:ctn id="l2"/></route>
29   <route src="host2" dst="host1"><link:ctn id="l2"/><link:ctn id="l1"/></route>
30 </platform>