-
Notifications
You must be signed in to change notification settings - Fork 1
/
config_batch.xml
32 lines (29 loc) · 976 Bytes
/
config_batch.xml
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
<config_batch>
<batch_system MACH="maui" type="slurm" >
<batch_submit>sbatch</batch_submit>
<submit_args>
<arg flag="--time" name="$JOB_WALLCLOCK_TIME"/>
<arg flag="-p" name="$JOB_QUEUE"/>
<arg flag="--account" name="$PROJECT"/>
</submit_args>
<queues>
<queue default="true" walltimemax="24:00:00">nesi_research</queue>
</queues>
</batch_system>
<batch_system MACH="mahuika" type="slurm" >
<batch_submit>sbatch</batch_submit>
<submit_args>
<arg flag="--time" name="$JOB_WALLCLOCK_TIME"/>
<arg flag="-p" name="$JOB_QUEUE"/>
<arg flag="--account" name="$PROJECT"/>
</submit_args>
<directives>
<directive>--ntasks={{ total_tasks }}</directive>
<directive>--hint=nomultithread</directive>
<directive>--mem-per-cpu=1850</directive>
</directives>
<queues>
<queue default="true" walltimemax="72:00:00">milan</queue>
</queues>
</batch_system>
</config_batch>