documentation

Creating a Apptainer image

Creating a Apptainer image 

NOTE, you need to be root to do this. Therefore you probably want to do this on your own machine.

Recipe for building a container

# Header
Bootstrap: docker        # container base from docker
From: ubuntu:18.04       # which version of the base image

Best-practice for reproducibility is not to use latest but to always specify which OS version to be pulled

Examples

Batch system examples

We have made a few examples of how to use the batch system, both from the command line and through a batch submit file.

Overview of the Batch system examples subpages:

Slurm GPU Resources (Kebnekaise)

Slurm GPU Resources (Kebnekaise)

NOTE: your project need to have time on the GPU nodes to use them, as they are considered a separate resource now. To use them you use the SLURM command mentioned below. For V100s there is no specific partition you need to give, but there is for the A100s - see below.

We have two types of GPU cards available on Kebnekaise, NVIDIA Tesla V100 (Volta) and NVIDIA A100 (Ampere).

To request GPU resources one has to include a GRES in the submit file. The general format is:

Pages

Updated: 2024-04-17, 14:47