BatchComputeServiceProperty.h
1 
10 #ifndef WRENCH_BATCHSERVICEPROPERTY_H
11 #define WRENCH_BATCHSERVICEPROPERTY_H
12 
13 #include "wrench/services/compute/ComputeServiceProperty.h"
14 
15 namespace wrench {
16 
17 
22 
23  public:
27  DECLARE_PROPERTY_NAME(TASK_STARTUP_OVERHEAD);
28 
40  DECLARE_PROPERTY_NAME(BATCH_SCHEDULING_ALGORITHM);
41 
49  DECLARE_PROPERTY_NAME(BATCH_QUEUE_ORDERING_ALGORITHM);
50 
59  DECLARE_PROPERTY_NAME(HOST_SELECTION_ALGORITHM);
60 
69  DECLARE_PROPERTY_NAME(TASK_SELECTION_ALGORITHM);
70 
82  DECLARE_PROPERTY_NAME(SIMULATED_WORKLOAD_TRACE_FILE);
83 
93 
102 
109 
119  DECLARE_PROPERTY_NAME(OUTPUT_CSV_JOB_LOG);
120 
121 
129  DECLARE_PROPERTY_NAME(BATCH_RJMS_PADDING_DELAY);
130 
139  DECLARE_PROPERTY_NAME(SIMULATE_COMPUTATION_AS_SLEEP);
140 
147  DECLARE_PROPERTY_NAME(BATSCHED_LOGGING_MUTED);
148 
157  DECLARE_PROPERTY_NAME(BATSCHED_CONTIGUOUS_ALLOCATION);
158 
159 
160  /***********************/
162  /***********************/
163 
164 
165  /***********************/
167  /***********************/
168 
169  };
170 }
171 
172 
173 #endif //WRENCH_BATCHSERVICEPROPERTY_H
static const std::string SIMULATE_COMPUTATION_AS_SLEEP
Simulate computation as just a sleep instead of an actual compute thread. This is for scalability rea...
Definition: BatchComputeServiceProperty.h:139
static const std::string IGNORE_INVALID_JOBS_IN_WORKLOAD_TRACE_FILE
Whether, when simulating a workload trace file, to abort when there is an invalid job specification (...
Definition: BatchComputeServiceProperty.h:101
static const std::string USE_REAL_RUNTIMES_AS_REQUESTED_RUNTIMES_IN_WORKLOAD_TRACE_FILE
Whether, when simulating a workload trace file, to use the actual runtimes as requested runtimes (i....
Definition: BatchComputeServiceProperty.h:92
static const std::string BATSCHED_CONTIGUOUS_ALLOCATION
Controls Batsched node allocation policy.
Definition: BatchComputeServiceProperty.h:157
Configurable properties for a ComputeService.
Definition: ComputeServiceProperty.h:21
static const std::string HOST_SELECTION_ALGORITHM
The host selection algorithm. Can be:
Definition: BatchComputeServiceProperty.h:59
static const std::string SUBMIT_TIME_OF_FIRST_JOB_IN_WORKLOAD_TRACE_FILE
A specification of the submit time of the first job in a provided trace file.
Definition: BatchComputeServiceProperty.h:108
static const std::string SIMULATED_WORKLOAD_TRACE_FILE
Path to a workload trace file to be replayed. The trace file can be be in the SWF format (see http://...
Definition: BatchComputeServiceProperty.h:82
Definition: Alarm.cpp:20
static const std::string TASK_STARTUP_OVERHEAD
The overhead to start a task execution, in seconds.
Definition: BatchComputeServiceProperty.h:27
static const std::string BATSCHED_LOGGING_MUTED
Controls Batsched logging.
Definition: BatchComputeServiceProperty.h:147
static const std::string TASK_SELECTION_ALGORITHM
The algorithm to pick which ready computational task (within a standard job executed by the batch ser...
Definition: BatchComputeServiceProperty.h:69
static const std::string OUTPUT_CSV_JOB_LOG
Path to a to-be-generated Batsim-style CSV trace file (e.g. for b3atch schedule visualization purpose...
Definition: BatchComputeServiceProperty.h:119
static const std::string BATCH_SCHEDULING_ALGORITHM
The batch scheduling algorithm. Can be:
Definition: BatchComputeServiceProperty.h:40
static const std::string BATCH_RJMS_PADDING_DELAY
Integral number of seconds that the Batch Scheduler adds to the runtime of each incoming job....
Definition: BatchComputeServiceProperty.h:129
static const std::string BATCH_QUEUE_ORDERING_ALGORITHM
The batch queue ordering algorithm. Can be:
Definition: BatchComputeServiceProperty.h:49
Configurable properties for a BatchComputeService.
Definition: BatchComputeServiceProperty.h:21