-
Notifications
You must be signed in to change notification settings - Fork 1
/
config_batch.xml
65 lines (51 loc) · 2.24 KB
/
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
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
<?xml version="1.0"?>
<!--
Copyright 2020-2020 Vrije Universiteit Brussel
This file is part of cesm-config,
originally created by the HPC team of Vrije Universiteit Brussel (https://hpc.vub.be),
with support of Vrije Universiteit Brussel (https://www.vub.be),
the Flemish Supercomputer Centre (VSC) (https://www.vscentrum.be),
the Flemish Research Foundation (FWO) (http://www.fwo.be/en)
and the Department of Economy, Science and Innovation (EWI) (http://www.ewi-vlaanderen.be/en).
https://github.com/vub-hpc/cesm-config
cesm-config is free software: you can redistribute it and/or modify
it under the terms of the GNU Library General Public License as
published by the Free Software Foundation, either version 3 of
the License, or (at your option) any later version.
cesm-config is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with cesm-config. If not, see <http://www.gnu.org/licenses/>.
Desripion:
Batch system configuration file for the following HPC clusters
- VSC Tier-2: Hydra
- VSC Tier-1: Breniac
Author: Alex Domingo (Vrije Universiteit Brussel)
-->
<config_batch>
<batch_system MACH="hydra" type="slurm">
<batch_submit>sbatch</batch_submit>
<submit_args>
<arg flag="-t" name="$JOB_WALLCLOCK_TIME"/>
<arg flag="-p" name="$JOB_QUEUE"/>
</submit_args>
<queues>
<queue walltimemin="00:15:00" walltimemax="120:00:00" nodemin="1" nodemax="12" default="true">skylake_mpi</queue>
</queues>
</batch_system>
<batch_system MACH="hortense" type="slurm">
<batch_submit>sbatch</batch_submit>
<jobid_pattern>(\d+)</jobid_pattern>
<submit_args>
<arg flag="-t" name="$JOB_WALLCLOCK_TIME"/>
<arg flag="-p" name="$JOB_QUEUE"/>
<arg flag="-A" name="$PROJECT"/>
</submit_args>
<queues>
<queue walltimemin="00:15:00" walltimemax="72:00:00" nodemax="256" default="true">cpu_rome</queue>
<queue walltimemin="00:15:00" walltimemax="72:00:00" nodemax="42">cpu_rome_512</queue>
</queues>
</batch_system>
</config_batch>