Skip to content

Commit 2532dfd

Browse files
authored
Add core and alps prefixes to config files
List of changes: - `transport: ssh` -> `transport: core.ssh` - `scheduler: slurm` -> `scheduler: core.slurm` - `hostname: <hpc>.cscs.ch` -> `hostname: <hpc>.alps.cscs.ch` - Removed unsupported `num_cores_per_mpiproc` for computers with SLURM scheduler - Removed unsupported `queue_name` field. This should be `partition` set via the `prepend_text` (at least for SLURM)
2 parents 66a5951 + 3523ce3 commit 2532dfd

File tree

15 files changed

+36
-42
lines changed

15 files changed

+36
-42
lines changed

daint.cscs.ch/hybrid-s1141/computer-setup.yaml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
---
22
label: daint-hybrid-s1141
3-
hostname: daint.cscs.ch
3+
hostname: daint.alps.cscs.ch
44
description: Piz Daint supercomputer at CSCS Lugano, Switzerland, using the hybrid partition. Project s1141
5-
transport: ssh
6-
scheduler: slurm
5+
transport: core.ssh
6+
scheduler: core.slurm
77
shebang: '#!/bin/bash -l'
88
mpiprocs_per_machine: 12
9-
num_cores_per_mpiproc: 1
10-
queue_name: normal
119
work_dir: /scratch/snx3000/{username}/aiida/
1210
mpirun_command: srun -n {tot_num_mpiprocs}
1311
prepend_text: |

daint.cscs.ch/hybrid/computer-setup.yaml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
---
22
label: daint-hybrid
3-
hostname: daint.cscs.ch
3+
hostname: daint.alps.cscs.ch
44
description: Piz Daint supercomputer at CSCS Lugano, Switzerland, using the hybrid partition. HyperThreading is off
5-
transport: ssh
6-
scheduler: slurm
5+
transport: core.ssh
6+
scheduler: core.slurm
77
shebang: '#!/bin/bash -l'
88
mpiprocs_per_machine: 12
9-
num_cores_per_mpiproc: 1
10-
queue_name: normal
119
work_dir: /scratch/snx3000/{username}/aiida/
1210
mpirun_command: srun -n {tot_num_mpiprocs}
1311
prepend_text: |

daint.cscs.ch/multicore-em01/computer-setup.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
22
label: daint-mc-em01
3-
hostname: daint.cscs.ch
3+
hostname: daint.alps.cscs.ch
44
description: Piz Daint supercomputer at CSCS Lugano, Switzerland, multicore partition, em01 account.
5-
transport: ssh
6-
scheduler: slurm
5+
transport: core.ssh
6+
scheduler: core.slurm
77
work_dir: /scratch/snx3000/{username}/aiida_run/
88
shebang: '#!/bin/bash'
99
mpirun_command: srun -n {tot_num_mpiprocs}

daint.cscs.ch/multicore/computer-setup.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
22
label: daint-mc
3-
hostname: daint.cscs.ch
3+
hostname: daint.alps.cscs.ch
44
description: Piz Daint supercomputer at CSCS Lugano, Switzerland, multicore partition.
5-
transport: ssh
6-
scheduler: slurm
5+
transport: core.ssh
6+
scheduler: core.slurm
77
work_dir: /scratch/snx3000/{username}/aiida_run/
88
shebang: '#!/bin/bash'
99
mpirun_command: srun -n {tot_num_mpiprocs}

eiger.cscs.ch/multicore-mr0-debug/computer-setup.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
22
label: eiger-mc-mr0-debug
3-
hostname: eiger.cscs.ch
3+
hostname: eiger.alps.cscs.ch
44
description: Eiger is the production partition on Alps, the HPE Cray EX Supercomputer.
5-
transport: ssh
6-
scheduler: slurm
5+
transport: core.ssh
6+
scheduler: core.slurm
77
work_dir: /scratch/e1000/{username}/aiida/
88
shebang: '#!/bin/bash'
99
mpirun_command: srun -n {tot_num_mpiprocs}

eiger.cscs.ch/multicore-mr0/computer-setup.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
22
label: eiger-mc-mr0
3-
hostname: eiger.cscs.ch
3+
hostname: eiger.alps.cscs.ch
44
description: Eiger is the production partition on Alps, the HPE Cray EX Supercomputer.
5-
transport: ssh
6-
scheduler: slurm
5+
transport: core.ssh
6+
scheduler: core.slurm
77
work_dir: /scratch/e1000/{username}/aiida/
88
shebang: '#!/bin/bash'
99
mpirun_command: srun -n {tot_num_mpiprocs}

fidis.epfl.ch/fidis-serial/computer-setup.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
label: fidis-serial
33
hostname: fidis.epfl.ch
44
description: Fidis EPFL computer using serial partition
5-
transport: ssh
6-
scheduler: slurm
5+
transport: core.ssh
6+
scheduler: core.slurm
77
work_dir: /scratch/{username}/aiida_run/
88
shebang: '#!/bin/bash'
99
mpirun_command: srun -n {tot_num_mpiprocs}

fidis.epfl.ch/fidis/computer-setup.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
label: fidis
33
hostname: fidis.epfl.ch
44
description: fidis EPFL computer
5-
transport: ssh
6-
scheduler: slurm
5+
transport: core.ssh
6+
scheduler: core.slurm
77
work_dir: /scratch/{username}/aiida_run/
88
shebang: '#!/bin/bash'
99
mpirun_command: srun -n {tot_num_mpiprocs}

imxgesrv1.epfl.ch/imxgesrv1/computer-setup.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
label: imxgesrv1
33
hostname: imxgesrv1.epfl.ch
44
description: imxgesrv EPFL computer
5-
transport: ssh
6-
scheduler: slurm
5+
transport: core.ssh
6+
scheduler: core.slurm
77
work_dir: /exports/commonscratch/{username}/aiida_run/
88
shebang: '#!/bin/bash'
99
mpirun_command: srun -n {tot_num_mpiprocs}

lsmosrv6/ch315/computer-setup.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
label: ch315
33
hostname: lsmosrv6.epfl.ch
44
description: Local server ch315 at LSMO
5-
transport: ssh
6-
scheduler: slurm
5+
transport: core.ssh
6+
scheduler: core.slurm
77
work_dir: /home/{username}/aiida_run/
88
shebang: '#!/bin/bash'
99
mpirun_command: srun -n {tot_num_mpiprocs}

0 commit comments

Comments
 (0)