Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
7799229b0906409c2e3e4aaba8413b58ce0ed150
[simgrid.git] / examples / platforms / 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="watt_per_state" value="95.0:200.0, 93.0:170.0, 90.0:150.0" />
11         <prop id="watt_off" value="10" />
12   </host>
13   <host id="MyHost2" power="100.0Mf" >
14         <prop id="watt_per_state" value="100.0:200.0" />
15         <prop id="watt_off" value="10" />
16   </host>
17
18   <link id="link1" bandwidth="100kBps" latency="0"/>
19   <route src="MyHost1" dst="MyHost2"><link_ctn id="link1"/></route>
20   
21 </AS>
22 </platform>