-
Notifications
You must be signed in to change notification settings - Fork 0
/
config_example.yml
68 lines (59 loc) · 1.58 KB
/
config_example.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
before_script:
- git pull
- mkdir -p build
- cd build
- cmake ..
- make
script:
times: 10
log-directory: "/scratch/tgauweil/logs"
body: |
msg="RUN: $run"
echo $msg;
# copy data file to local machine
sbcast ${SCRATCH}/data-${worldSize}.nrrd /tmp
# run benchmark
mpirun vampirtrace --tf /tmp/trace-${jobid} -- hpxic -hpx:print-config ${auto_args}
# copy trace file to scratch
gzip -9 /tmp/trace-${jobid}
mv /tmp/trace-${jobid} ${SCRATCH}/traces/
parameters:
jobid: "${SLURM_JOB_ID}"
worldSize:
noauto: true
values: [128x128x128, 256x256x256]
blockSize:
mask: ?x?x? # Defines as mask that is used to generate, here replace ? with elements out of range in val
values: [2,4]
numSeeds: [10,200]
seedSet: [1,3]
stepSize:
eval: "[x/10 for x in range(1,10)]" # python executes evals following string
numMaxSteps: 1000
distributeBlocks: simple
input: /tmp/data-${worldSize}.nrrd
output: /tmp/${jobid}.out
after_script:
- rm -rf /tmp
scheduler:
type: slurm
job-name: "Vampirtrace"
host: # Change parameters based on hostname
'elwe':
parameters:
partition: "skylake-96"
'minion':
parameters:
nodes: [1, 2, 3, 4, 5]
# Parameters will be directly added as SLURM parameters inside the generated job bash script
parameters:
account: "tukl-taskvis"
mail-type: "NONE"
ntasks-per-node: 1
cpus-per-task: 16
mem:
mask: ?G
values: [32,33,64]
time: 1:00:00
nodes:
eval: "[1<<exponent for exponent in range(7)]"