Changeset 1498 for DCWoRMS/branches
- Timestamp:
- 12/29/14 17:16:07 (10 years ago)
- Location:
- DCWoRMS/branches/coolemall/src/experiments
- Files:
-
- 23 added
- 20 edited
- 17 copied
Legend:
- Unmodified
- Added
- Removed
-
DCWoRMS/branches/coolemall/src/experiments/simpat2012/RunExperiment.java
r656 r1498 1 package test.article.recs;1 package experiments.simpat2012; 2 2 import simulator.DataCenterWorkloadSimulator; 3 3 … … 12 12 public void run(){ 13 13 String args[] = { 14 "src/ test/article/recs/experiment1.properties"14 "src/experiments/simpat2012/experiment1.properties" 15 15 }; 16 16 DataCenterWorkloadSimulator.main(args); -
DCWoRMS/branches/coolemall/src/experiments/simpat2012/experiment1.properties
r1174 r1498 2 2 3 3 # Path to xml file which describes resource characteristics. 4 resdesc=src/ test/article/recs/resources1.xml4 resdesc=src/experiments/simpat2012/recs/resources1.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/article/recs/workload70.swf8 readscenario.workloadfilename=src/experiments/simpat2012/recs/workload70.swf 9 9 10 10 # Choose directory where all result files should be placed. 11 stats.outputfolder= ../../article_result11 stats.outputfolder=src/experiments/simpat2012_result 12 12 13 13 # Define the type and content of charts to generate -
DCWoRMS/branches/coolemall/src/experiments/simpat2012/recs/plugins/energy/AmdNodeEEP.java
r1420 r1498 1 package test.article.recs.plugins.energy;1 package experiments.simpat2012.recs.plugins.energy; 2 2 3 3 import java.io.FileNotFoundException; -
DCWoRMS/branches/coolemall/src/experiments/simpat2012/recs/plugins/energy/AtomD510NodeEEP.java
r1420 r1498 1 package test.article.recs.plugins.energy;1 package experiments.simpat2012.recs.plugins.energy; 2 2 3 3 import java.io.FileNotFoundException; -
DCWoRMS/branches/coolemall/src/experiments/simpat2012/recs/plugins/energy/AtomZ510NodeEEP.java
r1420 r1498 1 package test.article.recs.plugins.energy;1 package experiments.simpat2012.recs.plugins.energy; 2 2 3 3 import java.io.FileNotFoundException; -
DCWoRMS/branches/coolemall/src/experiments/simpat2012/recs/plugins/energy/IntelNodeEEP.java
r1420 r1498 1 package test.article.recs.plugins.energy;1 package experiments.simpat2012.recs.plugins.energy; 2 2 3 3 import java.io.FileNotFoundException; -
DCWoRMS/branches/coolemall/src/experiments/simpat2012/recs/plugins/energy/RecsCoreEEP.java
r1420 r1498 1 package test.article.recs.plugins.energy;1 package experiments.simpat2012.recs.plugins.energy; 2 2 3 3 import schedframe.resources.computing.profiles.energy.ResourceEvent; -
DCWoRMS/branches/coolemall/src/experiments/simpat2012/recs/plugins/energy/RecsCpuEEP.java
r1420 r1498 1 package test.article.recs.plugins.energy;1 package experiments.simpat2012.recs.plugins.energy; 2 2 3 3 import schedframe.resources.computing.Processor; -
DCWoRMS/branches/coolemall/src/experiments/simpat2012/recs/plugins/energy/RecsNodeBaseEEP.java
r1365 r1498 1 package test.article.recs.plugins.energy;1 package experiments.simpat2012.recs.plugins.energy; 2 2 3 3 import java.io.FileInputStream; … … 16 16 import schedframe.resources.units.ResourceUnitName; 17 17 import schedframe.resources.units.StandardResourceUnitName; 18 import test.article.recs.utils.AppType;19 import test.article.recs.utils.TaskToApp;20 18 import dcworms.schedframe.scheduling.ExecTask; 21 19 import dcworms.schedframe.scheduling.Executable; 22 20 import example.energy.BaseEnergyEstimationPlugin; 21 import experiments.simpat2012.recs.utils.AppType; 22 import experiments.simpat2012.recs.utils.TaskToApp; 23 23 24 24 public abstract class RecsNodeBaseEEP extends BaseEnergyEstimationPlugin{ 25 25 26 private static String POWER_DATA_FILE_NAME = "src/ test/article/recs/data/power_data.properties";26 private static String POWER_DATA_FILE_NAME = "src/experiments/simpat2012/recs/data/power_data.properties"; 27 27 28 28 private ResourceBundle powBundle; -
DCWoRMS/branches/coolemall/src/experiments/simpat2012/recs/plugins/energy/RecsNodeModelEEP.java
r1420 r1498 1 package test.article.recs.plugins.energy;1 package experiments.simpat2012.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.article.recs.utils.AppType;25 import test.article.recs.utils.TaskToApp;26 24 import dcworms.schedframe.scheduling.ExecTask; 27 25 import dcworms.schedframe.scheduling.Executable; 26 import experiments.simpat2012.recs.utils.AppType; 27 import experiments.simpat2012.recs.utils.TaskToApp; 28 28 29 29 public class RecsNodeModelEEP extends RecsNodeBaseEEP{ 30 30 31 private static String POWER_DATA_FILE_NAME = "src/ test/article/recs/data/power_data.properties";32 private static String LOAD_DATA_FILE_NAME = "src/ test/article/recs/data/load.properties";31 private static String POWER_DATA_FILE_NAME = "src/experiments/simpat2012/recs/data/power_data.properties"; 32 private static String LOAD_DATA_FILE_NAME = "src/experiments/simpat2012/recs/data/load.properties"; 33 33 34 34 private ResourceBundle loadBundle; -
DCWoRMS/branches/coolemall/src/experiments/simpat2012/recs/plugins/scheduling/RecsExclusivenessDFSSP.java
r1399 r1498 1 package test.article.recs.plugins.scheduling;1 package experiments.simpat2012.recs.plugins.scheduling; 2 2 3 import experiments.simpat2012.recs.utils.RecsProcessorPowerInterface; 3 4 import gridsim.dcworms.DCWormsTags; 4 5 … … 31 32 import schedframe.scheduling.queue.TaskQueueList; 32 33 import schedframe.scheduling.tasks.TaskInterface; 33 import test.article.recs.utils.RecsProcessorPowerInterface;34 34 35 35 public class RecsExclusivenessDFSSP extends RecsSP { -
DCWoRMS/branches/coolemall/src/experiments/simpat2012/recs/plugins/scheduling/RecsExclusivenessEnOptDFSSP.java
r1399 r1498 1 package test.article.recs.plugins.scheduling; 2 1 package experiments.simpat2012.recs.plugins.scheduling; 2 3 import experiments.simpat2012.recs.utils.RecsProcessorPowerInterface; 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.article.recs.utils.RecsProcessorPowerInterface;38 38 39 39 public class RecsExclusivenessEnOptDFSSP extends RecsSP { 40 40 41 private static String TIME_DATA_FILE_NAME = "src/ test/article/recs/data/time_data.properties";42 private static String POWER_DATA_FILE_NAME = "src/ test/article/recs/data/power_data.properties";41 private static String TIME_DATA_FILE_NAME = "src/experiments/simpat2012/recs/data/time_data.properties"; 42 private static String POWER_DATA_FILE_NAME = "src/experiments/simpat2012/recs/data/power_data.properties"; 43 43 44 44 private ResourceBundle powBundle; -
DCWoRMS/branches/coolemall/src/experiments/simpat2012/recs/plugins/scheduling/RecsExclusivenessEnOptNodePowManSP.java
r1399 r1498 1 package test.article.recs.plugins.scheduling;1 package experiments.simpat2012.recs.plugins.scheduling; 2 2 3 3 import gridsim.dcworms.DCWormsTags; … … 39 39 public class RecsExclusivenessEnOptNodePowManSP extends RecsSP { 40 40 41 private static String TIME_DATA_FILE_NAME = "src/ test/article/recs/data/time_data.properties";42 private static String POWER_DATA_FILE_NAME = "src/ test/article/recs/data/power_data.properties";41 private static String TIME_DATA_FILE_NAME = "src/experiments/simpat2012/recs/data/time_data.properties"; 42 private static String POWER_DATA_FILE_NAME = "src/experiments/simpat2012/recs/data/power_data.properties"; 43 43 44 44 private ResourceBundle powBundle; -
DCWoRMS/branches/coolemall/src/experiments/simpat2012/recs/plugins/scheduling/RecsExclusivenessEnOptSP.java
r1399 r1498 1 package test.article.recs.plugins.scheduling;1 package experiments.simpat2012.recs.plugins.scheduling; 2 2 3 3 import gridsim.dcworms.DCWormsTags; … … 38 38 public class RecsExclusivenessEnOptSP extends RecsSP { 39 39 40 private static String TIME_DATA_FILE_NAME = "src/ test/article/recs/data/time_data.properties";41 private static String POWER_DATA_FILE_NAME = "src/ test/article/recs/data/power_data.properties";40 private static String TIME_DATA_FILE_NAME = "src/experiments/simpat2012/recs/data/time_data.properties"; 41 private static String POWER_DATA_FILE_NAME = "src/experiments/simpat2012/recs/data/power_data.properties"; 42 42 43 43 private ResourceBundle powBundle; -
DCWoRMS/branches/coolemall/src/experiments/simpat2012/recs/plugins/scheduling/RecsExclusivenessRandomNodePowManSP.java
r1399 r1498 1 package test.article.recs.plugins.scheduling;1 package experiments.simpat2012.recs.plugins.scheduling; 2 2 3 3 import gridsim.dcworms.DCWormsTags; -
DCWoRMS/branches/coolemall/src/experiments/simpat2012/recs/plugins/scheduling/RecsExclusivenessRandomSP.java
r1399 r1498 1 package test.article.recs.plugins.scheduling;1 package experiments.simpat2012.recs.plugins.scheduling; 2 2 3 3 import gridsim.dcworms.DCWormsTags; -
DCWoRMS/branches/coolemall/src/experiments/simpat2012/recs/plugins/scheduling/RecsSP.java
r1247 r1498 1 package test.article.recs.plugins.scheduling;1 package experiments.simpat2012.recs.plugins.scheduling; 2 2 3 3 import java.io.FileInputStream; … … 10 10 import schedframe.resources.computing.Processor; 11 11 import schedframe.scheduling.tasks.TaskInterface; 12 import test.article.recs.utils.AppType;13 import test.article.recs.utils.TaskToApp;14 12 import dcworms.schedframe.scheduling.Executable; 15 13 import example.localplugin.BaseLocalSchedulingPlugin; 14 import experiments.simpat2012.recs.utils.AppType; 15 import experiments.simpat2012.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/article/recs/data/executiveness_data.properties";19 private static String EXEC_DATA_FILE_NAME = "src/experiments/simpat2012/recs/data/executiveness_data.properties"; 20 20 21 21 private ResourceBundle execBundle; -
DCWoRMS/branches/coolemall/src/experiments/simpat2012/recs/plugins/timeestimation/RecsTimeEstimationPlugin.java
r1247 r1498 1 package test.article.recs.plugins.timeestimation;1 package experiments.simpat2012.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.article.recs.utils.AppType;21 import test.article.recs.utils.TaskToApp;22 20 import dcworms.schedframe.scheduling.ExecTask; 23 21 import example.timeestimation.BaseTimeEstimationPlugin; 22 import experiments.simpat2012.recs.utils.AppType; 23 import experiments.simpat2012.recs.utils.TaskToApp; 24 24 25 25 public class RecsTimeEstimationPlugin extends BaseTimeEstimationPlugin{ 26 26 27 private static String TIME_DATA_FILE_NAME = "src/ test/article/recs/data/time_data.properties";27 private static String TIME_DATA_FILE_NAME = "src/experiments/simpat2012/recs/data/time_data.properties"; 28 28 private static int TIME_FACTOR = 20; 29 29 -
DCWoRMS/branches/coolemall/src/experiments/simpat2012/recs/resdesc/resources1.xml
r656 r1498 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/DCWormsResSchema.xsd">3 xsi:noNamespaceSchemaLocation="../../../../../simulator/schemas/resources/DCWormsResSchema.xsd"> 4 4 5 5 <timeEstimationPlugin> 6 <name> test.article.recs.plugins.timeestimation.RecsTimeEstimationPlugin</name>6 <name>experiments.simpat2012.recs.plugins.timeestimation.RecsTimeEstimationPlugin</name> 7 7 </timeEstimationPlugin> 8 8 <!-- Simple data center description --> … … 13 13 <amount>4800000</amount> 14 14 </resourceUnit> 15 <computingResource class="ComputingNode" count="4"> 16 <resourceUnit class="memory"> 17 <amount>16384</amount> 18 </resourceUnit> 19 <parameter name="category"> 15 <computingResource class="Node" count="4"> 16 <parameter name="category"> 20 17 <value>Intel_i7</value> 21 18 </parameter> … … 23 20 <powerProfile> 24 21 <energyEstimationPlugin> 25 <name> test.article.recs.plugins.energy.IntelNodeEEP</name>22 <name>experiments.simpat2012.recs.plugins.energy.IntelNodeEEP</name> 26 23 </energyEstimationPlugin> 27 24 <powerStates> … … 37 34 </powerProfile> 38 35 </profile> 36 <resourceUnit class="memory"> 37 <amount>16384</amount> 38 </resourceUnit> 39 39 <computingResource class="Processor" count="1"> 40 40 <profile> … … 43 43 <!-- Reference to energy usage estimation plugin --> 44 44 <energyEstimationPlugin> 45 <name> test.article.recs.plugins.energy.RecsCpuEEP</name>45 <name>experiments.simpat2012.recs.plugins.energy.RecsCpuEEP</name> 46 46 </energyEstimationPlugin> 47 47 <!-- Definition of supported p-states and corresponding frequency and voltage level and power consumption --> … … 208 208 <powerProfile> 209 209 <energyEstimationPlugin> 210 <name> test.article.recs.plugins.energy.RecsCoreEEP</name>210 <name>experiments.simpat2012.recs.plugins.energy.RecsCoreEEP</name> 211 211 </energyEstimationPlugin> 212 212 </powerProfile> … … 216 216 </computingResource> 217 217 218 <computingResource class="ComputingNode" count="6"> 219 <resourceUnit class="memory"> 220 <amount>4096</amount> 221 </resourceUnit> 218 <computingResource class="Node" count="6"> 222 219 <parameter name="category"> 223 220 <value>AMD_Fusion</value> … … 226 223 <powerProfile> 227 224 <energyEstimationPlugin> 228 <name> test.article.recs.plugins.energy.AmdNodeEEP</name>225 <name>experiments.simpat2012.recs.plugins.energy.AmdNodeEEP</name> 229 226 </energyEstimationPlugin> 230 227 <powerStates> … … 240 237 </powerProfile> 241 238 </profile> 239 <resourceUnit class="memory"> 240 <amount>4096</amount> 241 </resourceUnit> 242 242 <computingResource class="Processor" count="1"> 243 243 <profile> 244 244 <powerProfile> 245 245 <energyEstimationPlugin> 246 <name> test.article.recs.plugins.energy.RecsCpuEEP</name>246 <name>experiments.simpat2012.recs.plugins.energy.RecsCpuEEP</name> 247 247 </energyEstimationPlugin> 248 248 <parameter name="pState"> … … 275 275 <powerProfile> 276 276 <energyEstimationPlugin> 277 <name> test.article.recs.plugins.energy.RecsCoreEEP</name>277 <name>experiments.simpat2012.recs.plugins.energy.RecsCoreEEP</name> 278 278 </energyEstimationPlugin> 279 279 </powerProfile> … … 283 283 </computingResource> 284 284 285 <computingResource class="ComputingNode" count="4"> 286 <resourceUnit class="memory"> 287 <amount>2048</amount> 288 </resourceUnit> 285 <computingResource class="Node" count="4"> 289 286 <parameter name="category"> 290 287 <value>Atom_D510</value> 291 </parameter> 288 </parameter> 292 289 <profile> 293 290 <powerProfile> 294 291 <energyEstimationPlugin> 295 <name> test.article.recs.plugins.energy.AtomD510NodeEEP</name>292 <name>experiments.simpat2012.recs.plugins.energy.AtomD510NodeEEP</name> 296 293 </energyEstimationPlugin> 297 294 <powerStates> … … 307 304 </powerProfile> 308 305 </profile> 306 <resourceUnit class="memory"> 307 <amount>2048</amount> 308 </resourceUnit> 309 309 <computingResource class="Processor" count="1"> 310 310 <profile> 311 311 <powerProfile> 312 312 <energyEstimationPlugin> 313 <name> test.article.recs.plugins.energy.RecsCpuEEP</name>313 <name>experiments.simpat2012.recs.plugins.energy.RecsCpuEEP</name> 314 314 </energyEstimationPlugin> 315 315 </powerProfile> … … 319 319 <powerProfile> 320 320 <energyEstimationPlugin> 321 <name> test.article.recs.plugins.energy.RecsCoreEEP</name>321 <name>experiments.simpat2012.recs.plugins.energy.RecsCoreEEP</name> 322 322 </energyEstimationPlugin> 323 323 </powerProfile> … … 327 327 </computingResource> 328 328 329 <computingResource class="ComputingNode" count="4"> 330 <resourceUnit class="memory"> 331 <amount>2048</amount> 332 </resourceUnit> 329 <computingResource class="Node" count="4"> 333 330 <parameter name="category"> 334 331 <value>Atom_Z510</value> 335 </parameter> 332 </parameter> 336 333 <profile> 337 334 <powerProfile> 338 335 <energyEstimationPlugin> 339 <name> test.article.recs.plugins.energy.AtomZ510NodeEEP</name>336 <name>experiments.simpat2012.recs.plugins.energy.AtomZ510NodeEEP</name> 340 337 </energyEstimationPlugin> 341 338 <powerStates> … … 351 348 </powerProfile> 352 349 </profile> 350 <resourceUnit class="memory"> 351 <amount>2048</amount> 352 </resourceUnit> 353 353 <computingResource class="Processor" count="1"> 354 354 <profile> 355 355 <powerProfile> 356 356 <energyEstimationPlugin> 357 <name> test.article.recs.plugins.energy.RecsCpuEEP</name>357 <name>experiments.simpat2012.recs.plugins.energy.RecsCpuEEP</name> 358 358 </energyEstimationPlugin> 359 359 </powerProfile> … … 363 363 <powerProfile> 364 364 <energyEstimationPlugin> 365 <name> test.article.recs.plugins.energy.RecsCoreEEP</name>365 <name>experiments.simpat2012.recs.plugins.energy.RecsCoreEEP</name> 366 366 </energyEstimationPlugin> 367 367 </powerProfile> … … 374 374 <!-- Definition of scheduling plugin at cluster level --> 375 375 <schedulingPlugin> 376 <name> test.article.recs.plugins.scheduling.RecsExclusivenessSP</name>376 <name>experiments.simpat2012.recs.plugins.scheduling.RecsExclusivenessSP</name> 377 377 </schedulingPlugin> 378 378 <!-- Reference to managed resources - cluster manages resources belonging to the defined data center --> -
DCWoRMS/branches/coolemall/src/experiments/simpat2012/recs/resources1.xml
r1208 r1498 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/DCWormsResSchema New.xsd">3 xsi:noNamespaceSchemaLocation="../../../../simulator/schemas/resources/DCWormsResSchema.xsd"> 4 4 5 5 <timeEstimationPlugin> 6 <name> test.article.recs.plugins.timeestimation.RecsTimeEstimationPlugin</name>6 <name>experiments.simpat2012.recs.plugins.timeestimation.RecsTimeEstimationPlugin</name> 7 7 </timeEstimationPlugin> 8 8 … … 20 20 <amount>4800000</amount> 21 21 </resourceUnit> 22 <computingResource class=" ComputingNode" type="Intel_i7" count="8" name="IntelI7">22 <computingResource class="Node" type="Intel_i7" count="8" name="IntelI7"> 23 23 <parameter name="category"> 24 24 <value>Intel_i7</value> … … 29 29 <powerProfile> 30 30 <energyEstimationPlugin> 31 <name> test.article.recs.plugins.energy.IntelNodeEEP</name>31 <name>experiments.simpat2012.recs.plugins.energy.IntelNodeEEP</name> 32 32 </energyEstimationPlugin> 33 <powerState List>33 <powerStates> 34 34 <powerState> 35 35 <name>ON</name> … … 40 40 <powerUsage>0</powerUsage> 41 41 </powerState> 42 </powerState List>42 </powerStates> 43 43 </powerProfile> 44 44 <thermalProfile></thermalProfile> … … 212 212 </computingResource> 213 213 214 <computingResource class=" ComputingNode" type="AMD_Fusion" count="6" name="AMDFusion">214 <computingResource class="Node" type="AMD_Fusion" count="6" name="AMDFusion"> 215 215 216 216 <parameter name="category"> … … 220 220 <powerProfile> 221 221 <energyEstimationPlugin> 222 <name> test.article.recs.plugins.energy.AmdNodeEEP</name>222 <name>experiments.simpat2012.recs.plugins.energy.AmdNodeEEP</name> 223 223 </energyEstimationPlugin> 224 <powerState List>224 <powerStates> 225 225 <powerState> 226 226 <name>ON</name> … … 231 231 <powerUsage>0</powerUsage> 232 232 </powerState> 233 </powerState List>233 </powerStates> 234 234 </powerProfile> 235 235 <thermalProfile></thermalProfile> … … 272 272 </computingResource> 273 273 274 <computingResource class=" ComputingNode" type="Atom_D510" count="4" name="AtomD510">274 <computingResource class="Node" type="Atom_D510" count="4" name="AtomD510"> 275 275 276 276 <parameter name="category"> … … 280 280 <powerProfile> 281 281 <energyEstimationPlugin> 282 <name> test.article.recs.plugins.energy.AtomD510NodeEEP</name>282 <name>experiments.simpat2012.recs.plugins.energy.AtomD510NodeEEP</name> 283 283 </energyEstimationPlugin> 284 <powerState List>284 <powerStates> 285 285 <powerState> 286 286 <name>ON</name> … … 291 291 <powerUsage>0</powerUsage> 292 292 </powerState> 293 </powerState List>293 </powerStates> 294 294 </powerProfile> 295 295 <thermalProfile></thermalProfile> … … 398 398 399 399 <!-- 400 <computingResource class=" ComputingNode" type="Atom_Z510" count="4">400 <computingResource class="Node" type="Atom_Z510" count="4"> 401 401 <resourceUnit class="memory"> 402 402 <amount>2048</amount> … … 408 408 <powerProfile> 409 409 <energyEstimationPlugin> 410 <name> test.article.recs.plugins.energy.AtomZ510NodeEEP</name>410 <name>experiments.simpat2012.recs.plugins.energy.AtomZ510NodeEEP</name> 411 411 </energyEstimationPlugin> 412 412 <powerStates> … … 471 471 <!-- Definition of scheduling plugin at cluster level --> 472 472 <schedulingPlugin> 473 <name> test.article.recs.plugins.scheduling.RecsExclusivenessRandomSP</name>473 <name>experiments.simpat2012.recs.plugins.scheduling.RecsExclusivenessRandomSP</name> 474 474 </schedulingPlugin> 475 475 <!-- Reference to managed resources - cluster manages resources belonging to the defined data center --> -
DCWoRMS/branches/coolemall/src/experiments/simpat2012/recs/utils/AppType.java
r710 r1498 1 package test.article.recs.utils;1 package experiments.simpat2012.recs.utils; 2 2 3 3 public enum AppType { -
DCWoRMS/branches/coolemall/src/experiments/simpat2012/recs/utils/RecsProcessorPowerInterface.java
r1420 r1498 1 package test.article.recs.utils;1 package experiments.simpat2012.recs.utils; 2 2 3 3 import java.util.Map; -
DCWoRMS/branches/coolemall/src/experiments/simpat2012/recs/utils/TaskToApp.java
r1197 r1498 1 package test.article.recs.utils;1 package experiments.simpat2012.recs.utils; 2 2 3 3 import java.util.HashMap; -
DCWoRMS/branches/coolemall/src/experiments/simpat2012/workloadgen/RunWorkloadGenerator.java
r656 r1498 1 package test.article.workloadgen;1 package experiments.simpat2012.workloadgen; 2 2 3 3 import simulator.workload.generator.WorkloadGenerator; … … 13 13 public void run(){ 14 14 String args[] = { 15 "src/ test/article/workloadgen/generator.properties"15 "src/experiments/simpat2012/workloadgen/generator.properties" 16 16 }; 17 17 WorkloadGenerator.main(args); -
DCWoRMS/branches/coolemall/src/experiments/simpat2012/workloadgen/generator.properties
r739 r1498 1 resdesc=src/ test/article/workloadgen/resources.xml2 createscenario.tasksdesc=src/ test/article/workloadgen/conf1/WorkloadConfig30.xml3 createscenario.outputfolder=src/ test/article/workloadgen/workload1 resdesc=src/experiments/simpat2012/workloadgen/resources.xml 2 createscenario.tasksdesc=src/experiments/simpat2012/workloadgen/conf1/WorkloadConfig30.xml 3 createscenario.outputfolder=src/experiments/simpat2012/workloadgen/workload 4 4 createscenario.workloadfilename=workload.swf 5 5 createscenario.overwrite_files=true
Note: See TracChangeset
for help on using the changeset viewer.