Changeset 529 for DCWoRMS/trunk/example/experiment3/resources3.xml
- Timestamp:
- 10/29/12 14:02:14 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
DCWoRMS/trunk/example/experiment3/resources3.xml
r526 r529 1 1 <?xml version="1.0" encoding="UTF-8"?> 2 2 <environment xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 3 xsi:noNamespaceSchemaLocation="../../simulator/schemas/resources/ WormsResSchema.xsd">3 xsi:noNamespaceSchemaLocation="../../simulator/schemas/resources/DCWormsResSchema.xsd"> 4 4 5 5 <!-- Data Center description with energy parameters --> 6 6 <resources> 7 7 <computingResource class="DataCenter" name="compRes"> 8 <!-- Defined data center contains only 1 rack (if count attribute is not specified a default value=1 is assumed) --> 8 9 <computingResource class="Rack"> 10 <!-- Rack consists of 4 computing nodes, 2 of one type and 2 of another --> 9 11 <computingResource class="ComputingNode" count="2"> 10 12 <profile> 13 <!-- Definition of computing node power profile --> 11 14 <powerProfile> 15 <!-- Reference to energy usage estimation plugin --> 12 16 <energyEstimationPlugin> 13 17 <name>example.energy.ComputingNodeEnergyEstimationPlugin</name> 14 </energyEstimationPlugin> 18 </energyEstimationPlugin> 19 <!-- Definition of supported power states and corresponding power consumption --> 20 <!-- Units according to the user interpretation, however statistics chart generator module by default express the values in Watts --> 15 21 <powerStates> 16 22 <powerState> … … 25 31 </powerProfile> 26 32 </profile> 33 <!-- Each of 2 computing nodes contains 4 processors--> 27 34 <computingResource class="Processor" count="4"> 28 35 <profile> 36 <!-- Definition of processor power profile --> 29 37 <powerProfile> 38 <!-- Reference to energy usage estimation plugin --> 30 39 <energyEstimationPlugin> 31 40 <name>example.energy.CPUEnergyEstimationPlugin</name> 32 41 </energyEstimationPlugin> 42 <!-- Definition of supported p-states and corresponding frequency and voltage level and power consumption --> 43 <!-- Units according to the user interpretation --> 33 44 <parameter name="pState"> 34 45 <property name="name"> … … 93 104 <computingResource class="ComputingNode" count="2"> 94 105 <profile> 106 <!-- Definition of computing node power profile --> 95 107 <powerProfile> 108 <!-- Reference to energy usage estimation plugin --> 96 109 <energyEstimationPlugin> 97 110 <name>example.energy.ComputingNodeEnergyEstimationPlugin</name> 98 111 </energyEstimationPlugin> 112 <!-- Definition of supported power states and corresponding power consumption --> 113 <!-- Units according to the user interpretation, however statistics chart generator module by default express the values in Watts --> 99 114 <powerStates> 100 115 <powerState> … … 109 124 </powerProfile> 110 125 </profile> 126 <!-- Each of 2 computing nodes contains 4 processors--> 111 127 <computingResource class="Processor" count="4"> 112 128 <profile> 129 <!-- Definition of processor power profile --> 113 130 <powerProfile> 131 <!-- Reference to energy usage estimation plugin --> 114 132 <energyEstimationPlugin> 115 133 <name>example.energy.CPUEnergyEstimationPlugin</name> 116 </energyEstimationPlugin> 134 </energyEstimationPlugin> 135 <!-- Definition of supported p-states and corresponding frequency and voltage level and power consumption --> 136 <!-- Units according to the user interpretation--> 117 137 <parameter name="pState"> 118 138 <property name="name"> … … 178 198 </computingResource> 179 199 <scheduler class="Cluster" name="cluster"> 200 <!-- Definition of scheduling plugin at cluster level --> 201 <!-- Switch between scheduling/power management plugins to observe the difference in power consumption --> 180 202 <schedulingPlugin> 181 203 <name>example.localplugin.FCFSBF_ClusterPlugin</name> 182 204 <!-- <name>example.localplugin.FCFSBF_DFSClusterPlugin</name> --> 183 </schedulingPlugin> 205 </schedulingPlugin> 206 <!-- Reference to managed resources - cluster manages resources belonging to the defined data center --> 184 207 <managedComputingResources include="false"> 185 208 <resourceName>compRes</resourceName>
Note: See TracChangeset
for help on using the changeset viewer.