Simply download an image from the releases page.
Simply download an image from the latest master-branch build page.
Build images with ogs-container-maker on Jenkins (login required, ask Lars Bilke for access):
It will build all combinations of format
, openmpi_versions
and pm
. When the build finishes you can download the container (*.sif
files) at the jobs page under Build Artifacts
.
This starts the container, mounts your home directory inside the container, passes the current working directory and runs the ogs executable (in your home directory which is mounted inside the container) with the passed project file. Everything works as expected and is transparent to the user. When ogs finishes the container stops and you returns to the host system.
The --app ogs
selects a pre-defined execution environment in the container (i.e. setting the PATH
to /scif/apps/ogs/bin
in which all the executables are located). You could also run without the --app
-parameter but then you had to specify the full executable path in the container:
Running a benchmark:
# Create output directories
mkdir -p _out _out_mpi
# Run serial benchmark
singularity exec --app ogs ogs-6.2.2-serial.sif ogs -o _out [ogs-sources]/Tests/Data/Mechanics/Linear/disc_with_hole.prj
# Run serial benchmark with output validation (via vtkdiff)
singularity exec --app ogs ogs-6.2.2-serial.sif ogs -o _out -r [ogs-sources]/Tests/Data/Mechanics/Linear [ogs-sources]/Tests/Data/Mechanics/Linear/disc_with_hole.prj
# Run parallel benchmark with MPI
mpirun -np 4 singularity exec --app ogs ogs-6.2.2-openmpi-2.1.2.sif ogs -o _out_mpi [ogs-sources]/Tests/Data/Mechanics/Linear/disc_with_hole.prj
You can run other contained executables as well, e.g. vtkdiff
:
You can interactively explore the container with singularity shell
(you can see that you are in the container because of the Singularity [container image file]:...>
prefix of the shell):
This article was written by Lars Bilke. If you are missing something or you find an error please let us know.
Generated with Hugo 0.64.1. Last revision: April 7, 2020
Commit: [web] Updated Singularity link. c0c229315
| Edit this page on