Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add proper error checking.
[simgrid.git] / examples / smpi / energy / platform.xml
1 <?xml version='1.0'?>
2 <!DOCTYPE platform SYSTEM "http://simgrid.gforge.inria.fr/simgrid.dtd">
3 <platform version="3">
4 <AS  id="AS0"  routing="Full">
5   <!-- Multiple pstate processor capacities can be defined as a list of powers specified for a given host -->
6   <!-- The enabled pstate can be set through the "pstate" attribute (lowest pstate corresponds to the highest processor power) -->
7   <host id="MyHost1" power="100.0Mf,50.0Mf,20.0Mf" pstate="0" >
8         <!--  List of min_power:max_power pairs (in Watts) corresponding to the power consumed when the processor is idle and when it is fully loaded -->
9         <!--  The list must contain one power pair for each previously defined pstate-->
10         <prop id="power_per_state" value="95.0:200.0, 93.0:170.0, 90.0:150.0" />
11   </host>
12   <host id="MyHost2" power="100.0Mf" >
13         <prop id="power_per_state" value="95.0:200.0" />
14   </host>
15
16   <link id="link1" bandwidth="100kBps" latency="0"/>
17   <route src="MyHost1" dst="MyHost2"><link_ctn id="link1"/></route>
18   
19 </AS>
20 </platform>