source: DCWoRMS/branches/coolemall/src/test/stencils/stencilsTest.xml @ 1604

Revision 1604, 1.5 KB checked in by wojtekp, 8 years ago (diff)
  • Property svn:mime-type set to text/plain
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<environment xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3        xsi:noNamespaceSchemaLocation="../../simulator/schemas/resources/DCwormsResSchema.xsd">
4
5        <timeEstimationPlugin>
6                <name>test.stencils.plugins.StencilTimeEstimationPlugin</name>
7        </timeEstimationPlugin>
8        <!-- Simple data center description -->
9        <resources>
10        <computingResource class="DataCenter" name="dc">
11                <computingResource class="Node" name="node" count="200000">
12                        <profile>
13                                <powerProfile>
14                                        <energyEstimationPlugin>
15                                                <name>test.stencils.plugins.NodeEnergyEstimationPlugin</name>
16                                        </energyEstimationPlugin>
17                                </powerProfile>
18                        </profile>
19
20                        <!-- Defined node contains 4 processors -->
21                        <computingResource class="Processor" count="10">
22                                <profile>
23                                        <powerProfile>
24                                                <energyEstimationPlugin>
25                                                        <name>test.stencils.plugins.ProcessorEnergyEstimationPlugin</name>
26                                                </energyEstimationPlugin>
27                                        </powerProfile>
28                                </profile>
29                        </computingResource>
30
31                </computingResource>
32        </computingResource>
33                <scheduler class="Cluster" name="cluster">
34                        <!-- Definition of scheduling plugin at cluster level -->
35                        <schedulingPlugin>
36                                <name>test.stencils.plugins.Stencils_FCFSBF_RandomPlugin</name>
37                        </schedulingPlugin>
38                        <!-- Reference to managed resources - cluster manages resources belonging
39                                to the defined data center -->
40                        <managedComputingResources include="false">
41                                <resourceName>dc</resourceName>
42                        </managedComputingResources>
43                </scheduler>
44        </resources>
45
46</environment>
Note: See TracBrowser for help on using the repository browser.