This lesson is in the early stages of development (Alpha version)

Accessing software via Modules

Overview

Teaching: 30 min
Exercises: 15 min
Questions
  • How do we load and unload software packages?

Objectives
  • Understand how to load and use a software package.

On a high-performance computing system, it is seldom the case that the software we want to use is available when we log in. It is installed, but we will need to “load” it before it can run.

Before we start using individual software packages, however, we should understand the reasoning behind this approach. The three biggest factors are:

Software incompatibility is a major headache for programmers. Sometimes the presence (or absence) of a software package will break others that depend on it. Two of the most famous examples are Python 2 and 3 and C compiler versions. Python 3 famously provides a python command that conflicts with that provided by Python 2. Software compiled against a newer version of the C libraries and then used when they are not present will result in a nasty 'GLIBCXX_3.4.20' not found error, for instance.

Software versioning is another common issue. A team might depend on a certain package version for their research project - if the software version was to change (for instance, if a package was updated), it might affect their results. Having access to multiple software versions allow a set of researchers to prevent software versioning issues from affecting their results.

Dependencies are where a particular software package (or even a particular version) depends on having access to another software package (or even a particular version of another software package). For example, the VASP materials science software may depend on having a particular version of the FFTW (Fastest Fourier Transform in the West) software library available for it to work.

Environment modules

Environment modules are the solution to these problems. A module is a self-contained description of a software package - it contains the settings required to run a software package and, usually, encodes required dependencies on other software packages.

There are a number of different environment module implementations commonly used on HPC systems: the two most common are TCL modules and Lmod. Both of these use similar syntax and the concepts are the same so learning to use one will allow you to use whichever is installed on the system you are using. In both implementations the module command is used to interact with environment modules. An additional subcommand is usually added to the command to specify what you want to do. For a list of subcommands you can use module -h or module help. As for all commands, you can access the full help on the man pages with man module.

On login you may start out with a default set of modules loaded or you may start out with an empty environment; this depends on the setup of the system you are using.

Listing available modules

To see available software modules, use module avail

[yourUsername@login1 ~]$ module avail
------- /cvmfs/pilot.eessi-hpc.org/2020.12/software/x86_64/amd/zen2/modules/all -------
   Bazel/3.6.0-GCCcore-9.3.0               NSS/3.51-GCCcore-9.3.0
   Bison/3.5.3-GCCcore-9.3.0               Ninja/1.10.0-GCCcore-9.3.0
   Boost/1.72.0-gompi-2020a                OSU-Micro-Benchmarks/5.6.3-gompi-2020a
   CGAL/4.14.3-gompi-2020a-Python-3.8.2    OpenBLAS/0.3.9-GCC-9.3.0
   CMake/3.16.4-GCCcore-9.3.0              OpenFOAM/v2006-foss-2020a

[removed most of the output here for clarity]

  Where:
   L:        Module is loaded
   Aliases:  Aliases exist: foo/1.2.3 (1.2) means that "module load foo/1.2" will load foo/1.2.3
   D:        Default Module

Use "module spider" to find all possible modules and extensions.
Use "module keyword key1 key2 ..." to search for all possible modules matching any of the "keys".

Listing currently loaded modules

You can use the module list command to see which modules you currently have loaded in your environment. If you have no modules loaded, you will see a message telling you so

[yourUsername@login1 ~]$ module list
No Modulefiles Currently Loaded.

Loading and unloading software

To load a software module, use module load. In this example we will use Python 3.

Initially, Python 3 is not loaded. We can test this by using the which command. which looks for programs the same way that Bash does, so we can use it to tell us where a particular piece of software is stored.

[yourUsername@login1 ~]$ which python3

If python3 did not exist we would see output like

/usr/bin/which: no python3 in (/cvmfs/pilot.eessi-hpc.org/2020.12/compat/linux/x86_64/usr/bin:/opt/software/slurm/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/puppetlabs/bin:/home/user01/.local/bin:/home/user01/bin)

However, in our case we do have an existing python3 available so we see

/cvmfs/pilot.eessi-hpc.org/2020.12/compat/linux/x86_64/usr/bin/python3

We need a different Python than the system provided one though, so let us load a module to access it.

We can load the python3 command with module load:

[yourUsername@login1 ~]$ module load Python
[yourUsername@login1 ~]$ which python3
/cvmfs/pilot.eessi-hpc.org/2020.12/software/x86_64/amd/zen2/software/Python/3.8.2-GCCcore-9.3.0/bin/python3

So, what just happened?

To understand the output, first we need to understand the nature of the $PATH environment variable. $PATH is a special environment variable that controls where a UNIX system looks for software. Specifically $PATH is a list of directories (separated by :) that the OS searches through for a command before giving up and telling us it can’t find it. As with all environment variables we can print it out using echo.

[yourUsername@login1 ~]$ echo $PATH
/cvmfs/pilot.eessi-hpc.org/2020.12/software/x86_64/amd/zen2/software/Python/3.8.2-GCCcore-9.3.0/bin:/cvmfs/pilot.eessi-hpc.org/2020.12/software/x86_64/amd/zen2/software/SQLite/3.31.1-GCCcore-9.3.0/bin:/cvmfs/pilot.eessi-hpc.org/2020.12/software/x86_64/amd/zen2/software/Tcl/8.6.10-GCCcore-9.3.0/bin:/cvmfs/pilot.eessi-hpc.org/2020.12/software/x86_64/amd/zen2/software/GCCcore/9.3.0/bin:/cvmfs/pilot.eessi-hpc.org/2020.12/compat/linux/x86_64/usr/bin:/opt/software/slurm/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/puppetlabs/bin:/home/user01/.local/bin:/home/user01/bin

You’ll notice a similarity to the output of the which command. In this case, there’s only one difference: the different directory at the beginning. When we ran the module load command, it added a directory to the beginning of our $PATH. Let’s examine what’s there:

[yourUsername@login1 ~]$ ls /cvmfs/pilot.eessi-hpc.org/2020.12/software/x86_64/amd/zen2/software/Python/3.8.2-GCCcore-9.3.0/bin
2to3              nosetests-3.8  python                 rst2s5.py
2to3-3.8          pasteurize     python3                rst2xetex.py
chardetect        pbr            python3.8              rst2xml.py
cygdb             pip            python3.8-config       rstpep2html.py
cython            pip3           python3-config         runxlrd.py
cythonize         pip3.8         rst2html4.py           sphinx-apidoc
easy_install      pybabel        rst2html5.py           sphinx-autogen
easy_install-3.8  __pycache__    rst2html.py            sphinx-build
futurize          pydoc3         rst2latex.py           sphinx-quickstart
idle3             pydoc3.8       rst2man.py             tabulate
idle3.8           pygmentize     rst2odt_prepstyles.py  virtualenv
netaddr           pytest         rst2odt.py             wheel
nosetests         py.test        rst2pseudoxml.py

Taking this to its conclusion, module load will add software to your $PATH. It “loads” software. A special note on this - depending on which version of the module program that is installed at your site, module load will also load required software dependencies.

To demonstrate, let’s use module list. module list shows all loaded software modules.

[yourUsername@login1 ~]$ module list
Currently Loaded Modules:
  1) GCCcore/9.3.0                 4) GMP/6.2.0-GCCcore-9.3.0
  2) Tcl/8.6.10-GCCcore-9.3.0      5) libffi/3.3-GCCcore-9.3.0
  3) SQLite/3.31.1-GCCcore-9.3.0   6) Python/3.8.2-GCCcore-9.3.0
[yourUsername@login1 ~]$ module load GROMACS
[yourUsername@login1 ~]$ module list
Currently Loaded Modules:
  1) GCCcore/9.3.0                    14) libfabric/1.11.0-GCCcore-9.3.0
  2) Tcl/8.6.10-GCCcore-9.3.0         15) PMIx/3.1.5-GCCcore-9.3.0
  3) SQLite/3.31.1-GCCcore-9.3.0      16) OpenMPI/4.0.3-GCC-9.3.0
  4) GMP/6.2.0-GCCcore-9.3.0          17) OpenBLAS/0.3.9-GCC-9.3.0
  5) libffi/3.3-GCCcore-9.3.0         18) gompi/2020a
  6) Python/3.8.2-GCCcore-9.3.0       19) FFTW/3.3.8-gompi-2020a
  7) GCC/9.3.0                        20) ScaLAPACK/2.1.0-gompi-2020a
  8) numactl/2.0.13-GCCcore-9.3.0     21) foss/2020a
  9) libxml2/2.9.10-GCCcore-9.3.0     22) pybind11/2.4.3-GCCcore-9.3.0-Python-3.8.2
 10) libpciaccess/0.16-GCCcore-9.3.0  23) SciPy-bundle/2020.03-foss-2020a-Python-3.8.2
 11) hwloc/2.2.0-GCCcore-9.3.0        24) networkx/2.4-foss-2020a-Python-3.8.2
 12) libevent/2.1.11-GCCcore-9.3.0    25) GROMACS/2020.1-foss-2020a-Python-3.8.2
 13) UCX/1.8.0-GCCcore-9.3.0

So in this case, loading the GROMACS module (a bioinformatics software package), also loaded GMP/6.2.0-GCCcore-9.3.0 and SciPy-bundle/2020.03-foss-2020a-Python-3.8.2 as well. Let’s try unloading the GROMACS package.

[yourUsername@login1 ~]$ module unload GROMACS
[yourUsername@login1 ~]$ module list
Currently Loaded Modules:
  1) GCCcore/9.3.0                    13) UCX/1.8.0-GCCcore-9.3.0
  2) Tcl/8.6.10-GCCcore-9.3.0         14) libfabric/1.11.0-GCCcore-9.3.0
  3) SQLite/3.31.1-GCCcore-9.3.0      15) PMIx/3.1.5-GCCcore-9.3.0
  4) GMP/6.2.0-GCCcore-9.3.0          16) OpenMPI/4.0.3-GCC-9.3.0
  5) libffi/3.3-GCCcore-9.3.0         17) OpenBLAS/0.3.9-GCC-9.3.0
  6) Python/3.8.2-GCCcore-9.3.0       18) gompi/2020a
  7) GCC/9.3.0                        19) FFTW/3.3.8-gompi-2020a
  8) numactl/2.0.13-GCCcore-9.3.0     20) ScaLAPACK/2.1.0-gompi-2020a
  9) libxml2/2.9.10-GCCcore-9.3.0     21) foss/2020a
 10) libpciaccess/0.16-GCCcore-9.3.0  22) pybind11/2.4.3-GCCcore-9.3.0-Python-3.8.2
 11) hwloc/2.2.0-GCCcore-9.3.0        23) SciPy-bundle/2020.03-foss-2020a-Python-3.8.2
 12) libevent/2.1.11-GCCcore-9.3.0    24) networkx/2.4-foss-2020a-Python-3.8.2

So using module unload “un-loads” a module, and depending on how a site is configured it may also unload all of the dependencies (in our case it does not). If we wanted to unload everything at once, we could run module purge (unloads everything).

[yourUsername@login1 ~]$ module purge
[yourUsername@login1 ~]$ module list
No modules loaded

Note that module purge is informative. It will also let us know if a default set of “sticky” packages cannot be unloaded (and how to actually unload these if we truly so desired).

Software versioning

So far, we’ve learned how to load and unload software packages. This is very useful. However, we have not yet addressed the issue of software versioning. At some point or other, you will run into issues where only one particular version of some software will be suitable. Perhaps a key bugfix only happened in a certain version, or version X broke compatibility with a file format you use. In either of these example cases, it helps to be very specific about what software is loaded.

Let’s examine the output of module avail more closely.

[yourUsername@login1 ~]$ module avail
------- /cvmfs/pilot.eessi-hpc.org/2020.12/software/x86_64/amd/zen2/modules/all -------
   Bazel/3.6.0-GCCcore-9.3.0               NSS/3.51-GCCcore-9.3.0
   Bison/3.5.3-GCCcore-9.3.0               Ninja/1.10.0-GCCcore-9.3.0
   Boost/1.72.0-gompi-2020a                OSU-Micro-Benchmarks/5.6.3-gompi-2020a
   CGAL/4.14.3-gompi-2020a-Python-3.8.2    OpenBLAS/0.3.9-GCC-9.3.0
   CMake/3.16.4-GCCcore-9.3.0              OpenFOAM/v2006-foss-2020a

[removed most of the output here for clarity]

  Where:
   L:        Module is loaded
   Aliases:  Aliases exist: foo/1.2.3 (1.2) means that "module load foo/1.2" will load foo/1.2.3
   D:        Default Module

Use "module spider" to find all possible modules and extensions.
Use "module keyword key1 key2 ..." to search for all possible modules matching any of the "keys".

Using software modules in scripts

Create a job that is able to run python3 --version. Remember, no software is loaded by default! Running a job is just like logging on to the system (you should not assume a module loaded on the login node is loaded on a compute node).

Solution

[yourUsername@login1 ~]$ nano python-module.sh
[yourUsername@login1 ~]$ cat python-module.sh
#!/bin/bash

module load Python

python3 --version
[yourUsername@login1 ~]$ sbatch  python-module.sh

Key Points

  • Load software with module load softwareName

  • Unload software with module purge

  • The module system handles software versioning and package conflicts for you automatically.