Ignore:
Timestamp:
10/29/12 14:02:14 (12 years ago)
Author:
wojtekp
Message:
 
Location:
DCWoRMS/trunk/example/experiment3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • DCWoRMS/trunk/example/experiment3/experiment3.properties

    r507 r529  
    1111stats.outputfolder=../experiment3_result 
    1212 
     13# Define the type and content of charts to generate 
    1314 
     15# Gantt chart 
    1416creatediagrams.gantt=true 
     17 
     18# Power usage chart - for computing nodes and processors 
    1519creatediagrams.respowerusage=ComputingNode;Processor 
  • DCWoRMS/trunk/example/experiment3/resources3.xml

    r526 r529  
    11<?xml version="1.0" encoding="UTF-8"?> 
    22<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"> 
    44         
    55        <!-- Data Center description with energy parameters --> 
    66        <resources> 
    77                <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) --> 
    89                        <computingResource class="Rack"> 
     10                                <!-- Rack consists of 4 computing nodes, 2 of one type and 2 of another --> 
    911                                <computingResource class="ComputingNode" count="2"> 
    1012                                        <profile> 
     13                                                <!-- Definition of computing node power profile --> 
    1114                                                <powerProfile> 
     15                                                        <!-- Reference to energy usage estimation plugin --> 
    1216                                                        <energyEstimationPlugin> 
    1317                                                                <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 --> 
    1521                                                        <powerStates> 
    1622                                                                <powerState> 
     
    2531                                                </powerProfile> 
    2632                                        </profile> 
     33                                        <!-- Each of 2 computing nodes contains 4 processors--> 
    2734                                        <computingResource class="Processor" count="4"> 
    2835                                                <profile> 
     36                                                        <!-- Definition of processor power profile --> 
    2937                                                        <powerProfile> 
     38                                                                <!-- Reference to energy usage estimation plugin --> 
    3039                                                                <energyEstimationPlugin> 
    3140                                                                        <name>example.energy.CPUEnergyEstimationPlugin</name> 
    3241                                                                </energyEstimationPlugin>                
     42                                                                <!-- Definition of supported p-states and corresponding frequency and voltage level and power consumption --> 
     43                                                                <!-- Units according to the user interpretation --> 
    3344                                                                <parameter name="pState"> 
    3445                                                                        <property name="name"> 
     
    93104                                <computingResource class="ComputingNode" count="2"> 
    94105                                        <profile> 
     106                                                <!-- Definition of computing node power profile --> 
    95107                                                <powerProfile> 
     108                                                        <!-- Reference to energy usage estimation plugin --> 
    96109                                                        <energyEstimationPlugin> 
    97110                                                                <name>example.energy.ComputingNodeEnergyEstimationPlugin</name> 
    98111                                                        </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 --> 
    99114                                                        <powerStates> 
    100115                                                                <powerState> 
     
    109124                                                </powerProfile> 
    110125                                        </profile> 
     126                                        <!-- Each of 2 computing nodes contains 4 processors--> 
    111127                                        <computingResource class="Processor" count="4"> 
    112128                                                <profile> 
     129                                                        <!-- Definition of processor power profile --> 
    113130                                                        <powerProfile> 
     131                                                                <!-- Reference to energy usage estimation plugin --> 
    114132                                                                <energyEstimationPlugin> 
    115133                                                                        <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-->       
    117137                                                                <parameter name="pState"> 
    118138                                                                        <property name="name"> 
     
    178198                </computingResource> 
    179199                <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 --> 
    180202                        <schedulingPlugin> 
    181203                                <name>example.localplugin.FCFSBF_ClusterPlugin</name> 
    182204                                <!--  <name>example.localplugin.FCFSBF_DFSClusterPlugin</name> --> 
    183                         </schedulingPlugin>      
     205                        </schedulingPlugin> 
     206                        <!-- Reference to managed resources - cluster manages resources belonging to the defined data center --> 
    184207                        <managedComputingResources include="false"> 
    185208                                <resourceName>compRes</resourceName> 
Note: See TracChangeset for help on using the changeset viewer.