Running e4s-cl on Perlmutter at NERSC#
Perlmutter at NERSC uses Slurm and Shifter, along with the Cray MPI environment. A profile exists for this system, and this page will highlight how to start using a profile and how to start from scratch.
The Shifter container system#
Contrary to other container solutions, Shifter only binds directories to the guest filesystem. This implies that all the required files need to be copied over to a directory, and some file bindings may not be allowed inside the container.
Fortunately, the program allows for modules that bind and loads libraries installed by the system administrators. There is one such module for MPICH on the system, and we will use it inside the container.
Setting up e4s-cl#
Create a profile for the execution.
$ e4s-cl init --profile shifter-mpich \
--backend shifter \
--image $YOURIMAGE
Creating an initialization script#
Next, we need to make sure the required libraries will be loaded in the container. In this example, we will load the trilinos
library module using spack
.
In a new file shifter-setup.sh
, write what should be done to load the required modules:
# Setup spack
. /spack/share/spack/setup-env.sh
# Load trilinos
spack load --first trilinos
Then link this file to the selected profile:
$ e4s-cl profile edit --source $PWD/shifter-setup.sh
Running jobs#
Run the job like a regular Slurm job while adding a e4s-cl
launcher before it. This can be done using a job file:
$ cat run.job
#SBATCH -N 2 -t 00:30:00
e4s-cl srun -n 2 /path/to/executable
$ sbatch run.job
Or from the command line in an interactive job:
$ e4s-cl srun -n 2 /path/to/executable