- Timestamp:
- 12/29/14 17:24:25 (10 years ago)
- Location:
- DCWoRMS/branches/coolemall/src/experiments
- Files:
-
- 20 added
- 24 edited
- 19 copied
Legend:
- Unmodified
- Added
- Removed
-
DCWoRMS/branches/coolemall/src/experiments/e2dc2013/RunExperiment.java
r826 r1499 1 package test.article2.recs;1 package experiments.e2dc2013; 2 2 import simulator.DataCenterWorkloadSimulator; 3 3 … … 12 12 public void run(){ 13 13 String args[] = { 14 "src/ test/article2/recs/experiment1.properties"14 "src/experiments/e2dc2013/experiment1.properties" 15 15 }; 16 16 DataCenterWorkloadSimulator.main(args); -
DCWoRMS/branches/coolemall/src/experiments/e2dc2013/experiment1.properties
r1179 r1499 2 2 3 3 # Path to xml file which describes resource characteristics. 4 resdesc=src/ test/article2/recs/resourcesCoolEmAll_Intel.xml4 resdesc=src/experiments/e2dc2013/recs/resourcesCoolEmAll_Intel.xml 5 5 6 6 # and swf file, which name is declared by readscenario.workloadfilename parameter. 7 7 # Swf file must be placed in readscenario.inputfolder directory. 8 readscenario.workloadfilename=src/ test/article2/recs/workload70.swf8 readscenario.workloadfilename=src/experiments/e2dc2013/recs/workload70.swf 9 9 10 10 # Choose directory where all result files should be placed. 11 stats.outputfolder= ../../article2_result11 stats.outputfolder=src/experiments/e2dc2013_result 12 12 13 13 # Define the type and content of charts to generate -
DCWoRMS/branches/coolemall/src/experiments/e2dc2013/recs/plugins/energy/AmdCpuEEP.java
r1420 r1499 1 package test.article2.recs.plugins.energy;1 package experiments.e2dc2013.recs.plugins.energy; 2 2 3 3 import schedframe.Parameters; -
DCWoRMS/branches/coolemall/src/experiments/e2dc2013/recs/plugins/energy/AmdNodeEEP.java
r1420 r1499 1 package test.article2.recs.plugins.energy;1 package experiments.e2dc2013.recs.plugins.energy; 2 2 3 3 import java.io.FileNotFoundException; -
DCWoRMS/branches/coolemall/src/experiments/e2dc2013/recs/plugins/energy/AtomD510CpuEEP.java
r1420 r1499 1 package test.article2.recs.plugins.energy;1 package experiments.e2dc2013.recs.plugins.energy; 2 2 3 3 import schedframe.Parameters; -
DCWoRMS/branches/coolemall/src/experiments/e2dc2013/recs/plugins/energy/AtomD510NodeEEP.java
r1420 r1499 1 package test.article2.recs.plugins.energy;1 package experiments.e2dc2013.recs.plugins.energy; 2 2 3 3 import java.io.FileNotFoundException; -
DCWoRMS/branches/coolemall/src/experiments/e2dc2013/recs/plugins/energy/DataCenterEnergyEstimationPlugin.java
r1420 r1499 1 package test.article2.recs.plugins.energy;1 package experiments.e2dc2013.recs.plugins.energy; 2 2 3 3 import schedframe.resources.computing.Node; -
DCWoRMS/branches/coolemall/src/experiments/e2dc2013/recs/plugins/energy/FanEnergyEstimationPlugin.java
r1420 r1499 1 package test.article2.recs.plugins.energy;1 package experiments.e2dc2013.recs.plugins.energy; 2 2 3 3 import schedframe.events.EventReason; -
DCWoRMS/branches/coolemall/src/experiments/e2dc2013/recs/plugins/energy/IntelCpuEEP.java
r1420 r1499 1 package test.article2.recs.plugins.energy;1 package experiments.e2dc2013.recs.plugins.energy; 2 2 3 3 import schedframe.Parameters; -
DCWoRMS/branches/coolemall/src/experiments/e2dc2013/recs/plugins/energy/IntelNodeEEP.java
r1420 r1499 1 package test.article2.recs.plugins.energy;1 package experiments.e2dc2013.recs.plugins.energy; 2 2 3 3 import java.io.FileNotFoundException; -
DCWoRMS/branches/coolemall/src/experiments/e2dc2013/recs/plugins/energy/RecsCoreEEP.java
r1420 r1499 1 package test.article2.recs.plugins.energy;1 package experiments.e2dc2013.recs.plugins.energy; 2 2 3 3 import schedframe.resources.computing.profiles.energy.ResourceEvent; -
DCWoRMS/branches/coolemall/src/experiments/e2dc2013/recs/plugins/energy/RecsCpuBaseEEP.java
r1420 r1499 1 package test.article2.recs.plugins.energy;1 package experiments.e2dc2013.recs.plugins.energy; 2 2 3 3 import schedframe.events.EventReason; -
DCWoRMS/branches/coolemall/src/experiments/e2dc2013/recs/plugins/energy/RecsNodeBaseEEP.java
r1420 r1499 1 package test.article2.recs.plugins.energy;1 package experiments.e2dc2013.recs.plugins.energy; 2 2 3 3 import java.io.FileInputStream; … … 22 22 import schedframe.resources.units.StandardResourceUnitName; 23 23 import schedframe.scheduling.manager.tasks.JobRegistry; 24 import test.article2.recs.utils.AppType;25 import test.article2.recs.utils.TaskToApp;26 24 import dcworms.schedframe.scheduling.ExecTask; 27 25 import dcworms.schedframe.scheduling.Executable; 28 26 import example.energy.BaseEnergyEstimationPlugin; 27 import experiments.e2dc2013.recs.utils.AppType; 28 import experiments.e2dc2013.recs.utils.TaskToApp; 29 29 30 30 public abstract class RecsNodeBaseEEP extends BaseEnergyEstimationPlugin{ 31 31 32 private static String POWER_DATA_FILE_NAME = "src/ test/article2/recs/data/power_data.properties";32 private static String POWER_DATA_FILE_NAME = "src/experiments/e2dc2013/recs/data/power_data.properties"; 33 33 34 34 private static int LEFT_ID = -1; -
DCWoRMS/branches/coolemall/src/experiments/e2dc2013/recs/plugins/scheduling/RecsSP.java
r1247 r1499 1 package test.article2.recs.plugins.scheduling;1 package experiments.e2dc2013.recs.plugins.scheduling; 2 2 3 3 import java.io.FileInputStream; … … 9 9 import schedframe.resources.computing.Node; 10 10 import schedframe.scheduling.tasks.TaskInterface; 11 import test.article2.recs.utils.AppType;12 import test.article2.recs.utils.TaskToApp;13 11 import dcworms.schedframe.scheduling.ExecTask; 14 12 import dcworms.schedframe.scheduling.Executable; 15 13 import example.localplugin.BaseLocalSchedulingPlugin; 14 import experiments.e2dc2013.recs.utils.AppType; 15 import experiments.e2dc2013.recs.utils.TaskToApp; 16 16 17 17 public abstract class RecsSP extends BaseLocalSchedulingPlugin { 18 18 19 private static String EXEC_DATA_FILE_NAME = "src/ test/article2/recs/data/executiveness_data.properties";19 private static String EXEC_DATA_FILE_NAME = "src/experiments/e2dc2013/recs/data/executiveness_data.properties"; 20 20 21 21 private ResourceBundle execBundle; -
DCWoRMS/branches/coolemall/src/experiments/e2dc2013/recs/plugins/scheduling/exp1/RecsInIdleSP.java
r1399 r1499 1 package test.article2.recs.plugins.scheduling.exp1;1 package experiments.e2dc2013.recs.plugins.scheduling.exp1; 2 2 3 import experiments.e2dc2013.recs.plugins.scheduling.RecsSP; 3 4 import gridsim.dcworms.DCWormsTags; 4 5 … … 30 31 import schedframe.scheduling.queue.TaskQueueList; 31 32 import schedframe.scheduling.tasks.TaskInterface; 32 import test.article2.recs.plugins.scheduling.RecsSP;33 33 34 34 public class RecsInIdleSP extends RecsSP { -
DCWoRMS/branches/coolemall/src/experiments/e2dc2013/recs/plugins/scheduling/exp1/RecsInOffSP.java
r1399 r1499 1 package test.article2.recs.plugins.scheduling.exp1;1 package experiments.e2dc2013.recs.plugins.scheduling.exp1; 2 2 3 import experiments.e2dc2013.recs.plugins.scheduling.RecsSP; 3 4 import gridsim.dcworms.DCWormsTags; 4 5 … … 34 35 import schedframe.scheduling.queue.TaskQueueList; 35 36 import schedframe.scheduling.tasks.TaskInterface; 36 import test.article2.recs.plugins.scheduling.RecsSP;37 37 38 38 public class RecsInOffSP extends RecsSP { -
DCWoRMS/branches/coolemall/src/experiments/e2dc2013/recs/plugins/scheduling/exp1/RecsInOutSP.java
r1399 r1499 1 package test.article2.recs.plugins.scheduling.exp1;1 package experiments.e2dc2013.recs.plugins.scheduling.exp1; 2 2 3 import experiments.e2dc2013.recs.plugins.scheduling.RecsSP; 3 4 import gridsim.dcworms.DCWormsTags; 4 5 … … 33 34 import schedframe.scheduling.queue.TaskQueueList; 34 35 import schedframe.scheduling.tasks.TaskInterface; 35 import test.article2.recs.plugins.scheduling.RecsSP;36 36 37 37 public class RecsInOutSP extends RecsSP { -
DCWoRMS/branches/coolemall/src/experiments/e2dc2013/recs/plugins/scheduling/exp1/RecsOutIdleSP.java
r1399 r1499 1 package test.article2.recs.plugins.scheduling.exp1;1 package experiments.e2dc2013.recs.plugins.scheduling.exp1; 2 2 3 import experiments.e2dc2013.recs.plugins.scheduling.RecsSP; 3 4 import gridsim.dcworms.DCWormsTags; 4 5 … … 30 31 import schedframe.scheduling.queue.TaskQueueList; 31 32 import schedframe.scheduling.tasks.TaskInterface; 32 import test.article2.recs.plugins.scheduling.RecsSP;33 33 34 34 public class RecsOutIdleSP extends RecsSP { -
DCWoRMS/branches/coolemall/src/experiments/e2dc2013/recs/plugins/scheduling/exp1/RecsOutOffSP.java
r1399 r1499 1 package test.article2.recs.plugins.scheduling.exp1;1 package experiments.e2dc2013.recs.plugins.scheduling.exp1; 2 2 3 import experiments.e2dc2013.recs.plugins.scheduling.RecsSP; 3 4 import gridsim.dcworms.DCWormsTags; 4 5 … … 35 36 import schedframe.scheduling.queue.TaskQueueList; 36 37 import schedframe.scheduling.tasks.TaskInterface; 37 import test.article2.recs.plugins.scheduling.RecsSP;38 38 39 39 public class RecsOutOffSP extends RecsSP { -
DCWoRMS/branches/coolemall/src/experiments/e2dc2013/recs/plugins/scheduling/exp2/RecsIn2OutSP.java
r1399 r1499 1 package test.article2.recs.plugins.scheduling.exp2; 2 1 package experiments.e2dc2013.recs.plugins.scheduling.exp2; 2 3 import experiments.e2dc2013.recs.plugins.scheduling.RecsSP; 3 4 import gridsim.dcworms.DCWormsTags; 4 5 … … 32 33 import schedframe.scheduling.queue.TaskQueueList; 33 34 import schedframe.scheduling.tasks.TaskInterface; 34 import test.article2.recs.plugins.scheduling.RecsSP;35 35 36 36 public class RecsIn2OutSP extends RecsSP { -
DCWoRMS/branches/coolemall/src/experiments/e2dc2013/recs/plugins/scheduling/exp2/RecsLeft2RightSP.java
r1399 r1499 1 package test.article2.recs.plugins.scheduling.exp2; 2 1 package experiments.e2dc2013.recs.plugins.scheduling.exp2; 2 3 import experiments.e2dc2013.recs.plugins.scheduling.RecsSP; 3 4 import gridsim.dcworms.DCWormsTags; 4 5 … … 15 16 import schedframe.events.scheduling.SchedulingEvent; 16 17 import schedframe.resources.ResourceStatus; 18 import schedframe.resources.StandardResourceType; 17 19 import schedframe.resources.computing.Node; 18 20 import schedframe.resources.computing.ComputingResource; 19 21 import schedframe.resources.computing.Core; 22 import schedframe.resources.computing.profiles.energy.airthroughput.CustomAirflowStateName; 20 23 import schedframe.resources.computing.profiles.energy.airthroughput.StandardAirflowStateName; 24 import schedframe.resources.devices.Device; 25 import schedframe.resources.devices.Fan; 21 26 import schedframe.resources.units.ProcessingElements; 22 27 import schedframe.resources.units.ResourceUnit; … … 32 37 import schedframe.scheduling.queue.TaskQueueList; 33 38 import schedframe.scheduling.tasks.TaskInterface; 34 import test.article2.recs.plugins.scheduling.RecsSP;35 39 36 40 public class RecsLeft2RightSP extends RecsSP { … … 62 66 Node node = chooseProvider(resourceManager, task); 63 67 if (node != null) { 64 node.getAirflowInterface().setAirflowState(StandardAirflowStateName.ON); 68 for(Device device: node.getParent().getResourceCharacteristic().getDevices()){ 69 70 if(device.getType().equals(StandardResourceType.Fan)){ 71 Fan fan = (Fan) device; 72 73 if(fan.getChilledResources().contains(node.getFullName())){ 74 fan.getAirflowInterface().setAirflowState(StandardAirflowStateName.ON); 75 } 76 } 77 } 78 //node.getAirflowInterface().setAirflowState(StandardAirflowStateName.ON); 65 79 notSelectedNodes.remove(node); 66 80 addToSchedulingPlan(plan, task, chooseResourcesForExecution(node, task)); … … 170 184 // node.getAirThroughputInterface().setAirThroughputState(StandardAirThroughputStateName.FAN_OFF); 171 185 } else { 172 node.getAirflowInterface().setAirflowState(StandardAirflowStateName.ON); 186 for(Device device: node.getParent().getResourceCharacteristic().getDevices()){ 187 188 if(device.getType().equals(StandardResourceType.Fan)){ 189 Fan fan = (Fan) device; 190 191 if(fan.getChilledResources().contains(node.getFullName())){ 192 fan.getAirflowInterface().setAirflowState(StandardAirflowStateName.ON); 193 } 194 } 195 } 196 //node.getAirflowInterface().setAirflowState(StandardAirflowStateName.ON); 173 197 } 174 198 } -
DCWoRMS/branches/coolemall/src/experiments/e2dc2013/recs/plugins/scheduling/exp2/RecsOut2InSP.java
r1399 r1499 1 package test.article2.recs.plugins.scheduling.exp2;1 package experiments.e2dc2013.recs.plugins.scheduling.exp2; 2 2 3 import experiments.e2dc2013.recs.plugins.scheduling.RecsSP; 3 4 import gridsim.dcworms.DCWormsTags; 4 5 … … 32 33 import schedframe.scheduling.queue.TaskQueueList; 33 34 import schedframe.scheduling.tasks.TaskInterface; 34 import test.article2.recs.plugins.scheduling.RecsSP;35 35 36 36 public class RecsOut2InSP extends RecsSP { -
DCWoRMS/branches/coolemall/src/experiments/e2dc2013/recs/plugins/scheduling/exp2/RecsRandomSP.java
r1399 r1499 1 package test.article2.recs.plugins.scheduling.exp2;1 package experiments.e2dc2013.recs.plugins.scheduling.exp2; 2 2 3 import experiments.e2dc2013.recs.plugins.scheduling.RecsSP; 3 4 import gridsim.dcworms.DCWormsTags; 4 5 … … 30 31 import schedframe.scheduling.queue.TaskQueueList; 31 32 import schedframe.scheduling.tasks.TaskInterface; 32 import test.article2.recs.plugins.scheduling.RecsSP;33 33 34 34 public class RecsRandomSP extends RecsSP { -
DCWoRMS/branches/coolemall/src/experiments/e2dc2013/recs/plugins/timeestimation/RecsTimeEstimationPlugin.java
r1247 r1499 1 package test.article2.recs.plugins.timeestimation;1 package experiments.e2dc2013.recs.plugins.timeestimation; 2 2 3 3 import java.io.FileInputStream; … … 18 18 import schedframe.resources.units.ResourceUnitName; 19 19 import schedframe.resources.units.StandardResourceUnitName; 20 import test.article2.recs.utils.AppType;21 import test.article2.recs.utils.TaskToApp;22 20 import dcworms.schedframe.scheduling.ExecTask; 23 21 import example.timeestimation.BaseTimeEstimationPlugin; 22 import experiments.e2dc2013.recs.utils.AppType; 23 import experiments.e2dc2013.recs.utils.TaskToApp; 24 24 25 25 public class RecsTimeEstimationPlugin extends BaseTimeEstimationPlugin{ 26 26 27 private static String TIME_DATA_FILE_NAME = "src/ test/article2/recs/data/time_data.properties";27 private static String TIME_DATA_FILE_NAME = "src/experiments/e2dc2013/recs/data/time_data.properties"; 28 28 private static int TIME_FACTOR = 1; 29 29 -
DCWoRMS/branches/coolemall/src/experiments/e2dc2013/recs/resourcesCoolEmAll.xml
r1219 r1499 4 4 5 5 <timeEstimationPlugin> 6 <name> test.article.recs.plugins.timeestimation.RecsTimeEstimationPlugin</name>6 <name>experiments.e2dc2013.recs.plugins.timeestimation.RecsTimeEstimationPlugin</name> 7 7 </timeEstimationPlugin> 8 8 … … 19 19 <amount>4800000</amount> 20 20 </resourceUnit> 21 <computingResource class=" ComputingNode" type="Intel_i7" count="8" name="IntelI7">21 <computingResource class="Node" type="Intel_i7" count="8" name="IntelI7"> 22 22 <parameter name="category"> 23 23 <value>Intel_i7</value> … … 26 26 <powerProfile> 27 27 <energyEstimationPlugin> 28 <name> test.article2.recs.plugins.energy.IntelNodeEEP</name>28 <name>experiments.e2dc2013.recs.plugins.energy.IntelNodeEEP</name> 29 29 </energyEstimationPlugin> 30 30 <powerStates> … … 44 44 <powerProfile> 45 45 <energyEstimationPlugin> 46 <name> test.article2.recs.plugins.energy.FanEnergyEstimationPlugin</name>46 <name>experiments.e2dc2013.recs.plugins.energy.FanEnergyEstimationPlugin</name> 47 47 </energyEstimationPlugin> 48 48 </powerProfile> … … 232 232 </computingResource> 233 233 234 <computingResource class=" ComputingNode" type="AMD_Fusion" count="6" name="AMDFusion">234 <computingResource class="Node" type="AMD_Fusion" count="6" name="AMDFusion"> 235 235 <parameter name="category"> 236 236 <value>AMD_Fusion</value> … … 239 239 <powerProfile> 240 240 <energyEstimationPlugin> 241 <name> test.article2.recs.plugins.energy.AmdNodeEEP</name>241 <name>experiments.e2dc2013.recs.plugins.energy.AmdNodeEEP</name> 242 242 </energyEstimationPlugin> 243 243 <powerStates> … … 257 257 <powerProfile> 258 258 <energyEstimationPlugin> 259 <name> test.article2.recs.plugins.energy.FanEnergyEstimationPlugin</name>259 <name>experiments.e2dc2013.recs.plugins.energy.FanEnergyEstimationPlugin</name> 260 260 </energyEstimationPlugin> 261 261 </powerProfile> … … 313 313 </computingResource> 314 314 315 <computingResource class=" ComputingNode" type="Atom_D510" count="4" name="AtomD510">315 <computingResource class="Node" type="Atom_D510" count="4" name="AtomD510"> 316 316 <parameter name="category"> 317 317 <value>Atom_D510</value> … … 320 320 <powerProfile> 321 321 <energyEstimationPlugin> 322 <name> test.article2.recs.plugins.energy.AtomD510NodeEEP</name>322 <name>experiments.e2dc2013.recs.plugins.energy.AtomD510NodeEEP</name> 323 323 </energyEstimationPlugin> 324 324 <powerStates> … … 338 338 <powerProfile> 339 339 <energyEstimationPlugin> 340 <name> test.article2.recs.plugins.energy.FanEnergyEstimationPlugin</name>340 <name>experiments.e2dc2013.recs.plugins.energy.FanEnergyEstimationPlugin</name> 341 341 </energyEstimationPlugin> 342 342 </powerProfile> … … 464 464 <!-- Definition of scheduling plugin at cluster level --> 465 465 <schedulingPlugin> 466 <name> test.article2.recs.plugins.scheduling.RecsExclusivenessRandomSP</name>466 <name>experiments.e2dc2013.recs.plugins.scheduling.RecsExclusivenessRandomSP</name> 467 467 </schedulingPlugin> 468 468 <!-- Reference to managed resources - cluster manages resources belonging to the defined data center --> -
DCWoRMS/branches/coolemall/src/experiments/e2dc2013/recs/resourcesCoolEmAll_Intel.xml
r1219 r1499 4 4 5 5 <timeEstimationPlugin> 6 <name> test.article2.recs.plugins.timeestimation.RecsTimeEstimationPlugin</name>6 <name>experiments.e2dc2013.recs.plugins.timeestimation.RecsTimeEstimationPlugin</name> 7 7 </timeEstimationPlugin> 8 8 … … 12 12 <powerProfile> 13 13 <energyEstimationPlugin> 14 <name> test.article2.recs.plugins.energy.DataCenterEnergyEstimationPlugin</name>14 <name>experiments.e2dc2013.recs.plugins.energy.DataCenterEnergyEstimationPlugin</name> 15 15 </energyEstimationPlugin> 16 16 </powerProfile> … … 21 21 </resourceUnit> 22 22 <computingResource class="RECS" name="Recs1"> 23 <computingResource class=" ComputingNode" type="Intel_i7" count="18" name="IntelI7">23 <computingResource class="Node" type="Intel_i7" count="18" name="IntelI7"> 24 24 <parameter name="category"> 25 25 <value>Intel_i7</value> … … 28 28 <powerProfile> 29 29 <energyEstimationPlugin> 30 <name> test.article2.recs.plugins.energy.IntelNodeEEP</name>30 <name>experiments.e2dc2013.recs.plugins.energy.IntelNodeEEP</name> 31 31 </energyEstimationPlugin> 32 32 <powerStates> … … 46 46 <powerProfile> 47 47 <energyEstimationPlugin> 48 <name> test.article2.recs.plugins.energy.FanEnergyEstimationPlugin</name>48 <name>experiments.e2dc2013.recs.plugins.energy.FanEnergyEstimationPlugin</name> 49 49 </energyEstimationPlugin> 50 50 </powerProfile> … … 73 73 <powerProfile> 74 74 <energyEstimationPlugin> 75 <name> test.article2.recs.plugins.energy.IntelCpuEEP</name>75 <name>experiments.e2dc2013.recs.plugins.energy.IntelCpuEEP</name> 76 76 </energyEstimationPlugin> 77 77 … … 230 230 <!-- Definition of scheduling plugin at cluster level --> 231 231 <schedulingPlugin> 232 <name> test.article2.recs.plugins.scheduling.exp2.RecsLeft2RightSP</name>232 <name>experiments.e2dc2013.recs.plugins.scheduling.exp2.RecsLeft2RightSP</name> 233 233 </schedulingPlugin> 234 234 <!-- Reference to managed resources - cluster manages resources belonging to the defined data center --> -
DCWoRMS/branches/coolemall/src/experiments/e2dc2013/recs/utils/AppType.java
r826 r1499 1 package test.article2.recs.utils;1 package experiments.e2dc2013.recs.utils; 2 2 3 3 public enum AppType { -
DCWoRMS/branches/coolemall/src/experiments/e2dc2013/recs/utils/RecsProcessorPowerInterface.java
r1420 r1499 1 package test.article2.recs.utils;1 package experiments.e2dc2013.recs.utils; 2 2 3 3 import java.util.Map; -
DCWoRMS/branches/coolemall/src/experiments/e2dc2013/recs/utils/TaskToApp.java
r1200 r1499 1 package test.article2.recs.utils;1 package experiments.e2dc2013.recs.utils; 2 2 3 3 import java.util.HashMap; -
DCWoRMS/branches/coolemall/src/experiments/e2dc2013/workloadgen/RunWorkloadGenerator.java
r826 r1499 1 package test.article2.workloadgen;1 package experiments.e2dc2013.workloadgen; 2 2 3 3 import simulator.workload.generator.WorkloadGenerator; -
DCWoRMS/branches/coolemall/src/experiments/e2dc2013/workloadgen/generator.properties
r826 r1499 1 resdesc=src/ test/article2/workloadgen/resources.xml2 createscenario.tasksdesc=src/ test/article2/workloadgen/conf/WorkloadConfig50.xml3 createscenario.outputfolder=src/ test/article2/workloadgen/workload1 resdesc=src/experiments/e2dc2013/workloadgen/resources.xml 2 createscenario.tasksdesc=src/experiments/e2dc2013/workloadgen/conf/WorkloadConfig50.xml 3 createscenario.outputfolder=src/experiments/e2dc2013/workloadgen/workload 4 4 createscenario.workloadfilename=workload.swf 5 5 createscenario.overwrite_files=true
Note: See TracChangeset
for help on using the changeset viewer.