aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorJonathan Herman <hermanjl@cs.unc.edu>2013-04-08 16:17:16 -0400
committerJonathan Herman <hermanjl@cs.unc.edu>2013-04-08 16:17:16 -0400
commit2ddd4b06389b7dde8c8fbb43b19b23fde5c40b22 (patch)
tree541d0981fbd203c39f3ec3ee6e58592456bd7cc1 /README.md
parentd169debf732270c9571be6ea6e7d920345bffc33 (diff)
Replaced num_tasks with tasks for consistency.
Diffstat (limited to 'README.md')
-rw-r--r--README.md14
1 files changed, 7 insertions, 7 deletions
diff --git a/README.md b/README.md
index dd6b417..d258900 100644
--- a/README.md
+++ b/README.md
@@ -224,13 +224,13 @@ The `-d` option will describe the properties of a generator or generators and th
224```bash 224```bash
225$ gen_exps.py -d G-EDF,P-EDF 225$ gen_exps.py -d G-EDF,P-EDF
226Generator GSN-EDF: 226Generator GSN-EDF:
227 num_tasks -- Number of tasks per experiment. 227 tasks -- Number of tasks per experiment.
228 Default: [24, 48, 72, 96] 228 Default: [24, 48, 72, 96]
229 Allowed: <type 'int'> 229 Allowed: <type 'int'>
230 .... 230 ....
231 231
232Generator PSN-EDF: 232Generator PSN-EDF:
233 num_tasks -- Number of tasks per experiment. 233 tasks -- Number of tasks per experiment.
234 Default: [24, 48, 72, 96] 234 Default: [24, 48, 72, 96]
235 Allowed: <type 'int'> 235 Allowed: <type 'int'>
236 cpus -- Number of processors on target system. 236 cpus -- Number of processors on target system.
@@ -239,7 +239,7 @@ Generator PSN-EDF:
239 .... 239 ....
240``` 240```
241 241
242You create experiments by specifying a generator. The following will create experiments 4 schedules with 24, 48, 72, and 96 tasks, because the default value of `num_tasks` is an array of these values (see above). 242You create experiments by specifying a generator. The following will create experiments 4 schedules with 24, 48, 72, and 96 tasks, because the default value of `tasks` is an array of these values (see above).
243 243
244```bash 244```bash
245$ gen_exps.py P-EDF 245$ gen_exps.py P-EDF
@@ -251,7 +251,7 @@ sched=GSN-EDF_num-tasks=72/ sched=GSN-EDF_num-tasks=96/
251You can modify the default using a single value (the `-f` option deletes previous experiments in the output directory, defaulting to `exps/`, changeable with `-o`): 251You can modify the default using a single value (the `-f` option deletes previous experiments in the output directory, defaulting to `exps/`, changeable with `-o`):
252 252
253```bash 253```bash
254$ gen_exps.py -f P-EDF num_tasks=24 254$ gen_exps.py -f P-EDF tasks=24
255$ ls exps/ 255$ ls exps/
256sched=GSN-EDF_num-tasks=24/ 256sched=GSN-EDF_num-tasks=24/
257``` 257```
@@ -259,7 +259,7 @@ sched=GSN-EDF_num-tasks=24/
259Or with an array of values, specified as a comma-seperated list: 259Or with an array of values, specified as a comma-seperated list:
260 260
261```bash 261```bash
262$ gen_exps.py -f num_tasks=`seq -s, 24 2 30` P-EDF 262$ gen_exps.py -f tasks=`seq -s, 24 2 30` P-EDF
263sched=PSN-EDF_num-tasks=24/ sched=PSN-EDF_num-tasks=26/ 263sched=PSN-EDF_num-tasks=24/ sched=PSN-EDF_num-tasks=26/
264sched=PSN-EDF_num-tasks=28/ sched=PSN-EDF_num-tasks=30/ 264sched=PSN-EDF_num-tasks=28/ sched=PSN-EDF_num-tasks=30/
265``` 265```
@@ -267,7 +267,7 @@ sched=PSN-EDF_num-tasks=28/ sched=PSN-EDF_num-tasks=30/
267The generator will create a different directory for each possible configuration of the parameters. Each parameter which is varied is included in the name of the schedule directory. For example, to vary the number of CPUs but not the number of tasks: 267The generator will create a different directory for each possible configuration of the parameters. Each parameter which is varied is included in the name of the schedule directory. For example, to vary the number of CPUs but not the number of tasks:
268 268
269```bash 269```bash
270$ gen_exps.py -f num_tasks=24 cpus=3,6 P-EDF 270$ gen_exps.py -f tasks=24 cpus=3,6 P-EDF
271$ ls exps 271$ ls exps
272sched=PSN-EDF_cpus=3/ sched=PSN-EDF_cpus=6/ 272sched=PSN-EDF_cpus=3/ sched=PSN-EDF_cpus=6/
273``` 273```
@@ -283,7 +283,7 @@ $ cat exps/sched\=PSN-EDF_cpus\=3/params.py
283You can also have multiple schedules generated with the same configuration using the `-n` option: 283You can also have multiple schedules generated with the same configuration using the `-n` option:
284 284
285```bash 285```bash
286$ gen_exps.py -f num_tasks=24 -n 5 P-EDF 286$ gen_exps.py -f tasks=24 -n 5 P-EDF
287$ ls exps/ 287$ ls exps/
288sched=PSN-EDF_trial=0/ sched=PSN-EDF_trial=1/ sched=PSN-EDF_trial=2/ 288sched=PSN-EDF_trial=0/ sched=PSN-EDF_trial=1/ sched=PSN-EDF_trial=2/
289sched=PSN-EDF_trial=3/ sched=PSN-EDF_trial=4/ 289sched=PSN-EDF_trial=3/ sched=PSN-EDF_trial=4/