Clariden is a vcluster (versatile software-defined cluster) that's part of the Alps system.
A short summary of the hardware available in the nodes:
Partition | NNodes | GPUs per node | GPU | GPU memory | Max time |
---|---|---|---|---|---|
nvgpu | 18 | 4 | Nvidia A100 | 80GB | 1 day |
amdgpu | 12 | 8 | AMD Mi200 | 64GB | 1 day |
normal | 200 | 0 | - | - | 1 day |
clariden | 200 | 0 | - | - | 30 minutes |
More information on the partitions can be found with scontrol show partitions.
ssh
from the front end Ela ( `ssh <username>@ela.cscs.ch`
). The access to CSCS services and systems requires users to authenticate using multi-Factor Authentication (MFA). Please, find more information here.Some typical/helpful slurm commands are
sbatch | submit a batch script |
squeue | check the status of jobs on the system |
scancel | delete one of your jobs from the queue |
srun | launch commands in an existing allocation |
srun --interactive --jobid <jobid> --pty bash | start interactive session on an allocated node |
Example of Slurm job script
#!/bin/bash -l #SBATCH --job-name=<jobname> #SBATCH --time=00:15:00 #SBATCH --nodes=1 #SBATCH --ntasks-per-core=1 #SBATCH --ntasks-per-node=4 #SBATCH --cpus-per-task=16 #SBATCH --partition=nvdgpu #SBATCH --account=<project> srun executable |