Building software on top of EESSI¶
Building software on top of EESSI with EasyBuild¶
Building on top of EESSI with EasyBuild is relatively straightforward. One crucial feature is that EasyBuild supports building against operating system libraries that are not in a standard prefix (such as /usr/lib
). This is required when building against EESSI, since all of the software in EESSI is built against the compatibility layer.
Starting the EESSI software environment¶
Start your environment as described here
Using the EESSI-extend module¶
The EESSI-extend
module facilitates building on top of EESSI using EasyBuild. It does a few key things:
- It configures EasyBuild to match how the rest of the EESSI software is built
- It configures EasyBuild to use a certain installation path (e.g. in your homedir), taking into account the hardware architecture you are building on
- It adds the relevant subdirectory from your installation path to your
MODULEPATH
, to make sure your newly installed modules are available - It loads the EasyBuild module
The EESSI-extend
module recognizes a few environment variables. To print an up-to-date list, check the module itself
The installation prefix is determined by EESSI-extend
through the following logic:
- If
$EESSI_CVMFS_INSTALL
is set, software is installed in$EESSI_SOFTWARE_PATH
. This variable shouldn't be used by users and would only be used by CVMFS administrators of the EESSI repository. - If
$EESSI_SITE_INSTALL
is set, the EESSI site installation prefix ($EESSI_SITE_SOFTWARE_PATH
) will be used. This is typically where sites hosting a system that has EESSI deployed would install additional software on top of EESSI and make it available to all their users. - If
$EESSI_PROJECT_INSTALL
is set (and$EESSI_USER_INSTALL
is not set), this prefix will be used. You should use this if you want to install additional software on top of EESSI that should also be usable by your project partners on the same system. For example, if you have a project space at/project/my_project
that all your project partners can access, you could setexport EESSI_PROJECT_INSTALL=/project/my_project/eessi
. Make sure that this directory has the SGID permission set (chmod g+s $EESSI_PROJECT_INSTALL
). This way, all the additional installations done withEESSI-extend
will be put in that prefix, and will get the correct UNIX file permissions so that all your project partners can access it. - If
$EESSI_USER_INSTALL
is set, this prefix will be used. You should use this if you want to install additional software on top of EESSI just for your own user. For example, you could setexport EESSI_USER_INSTALL=$HOME/my/eessi/extend/prefix
, andEESSI-extend
will install all software in this prefix. Unix file permissions will be set such that these installations will be readable only to the user.
If none of the above apply, the default is a user installation in $HOME/EESSI
(i.e. effectively the same as setting EESSI_USER_INSTALL=$HOME/EESSI
).
Here, we assume you are just an end-user, not having set any of the above environment variables, and loading the EESSI-extend
module with the default installation prefix:
Now, if we check the EasyBuild configuration
eb --show-config
allow-loaded-modules (E) = EasyBuild, EESSI-extend
buildpath (E) = /tmp/<user>/easybuild/build
containerpath (E) = /tmp/<user>/easybuild/containers
debug (E) = True
experimental (E) = True
filter-deps (E) = Autoconf, Automake, Autotools, binutils, bzip2, DBus, flex, gettext, gperf, help2man, intltool, libreadline, libtool, M4, makeinfo, ncurses, util-linux, XZ, zlib
filter-env-vars (E) = LD_LIBRARY_PATH
hooks (E) = /cvmfs/software.eessi.io/versions/2023.06/init/easybuild/eb_hooks.py
ignore-osdeps (E) = True
installpath (E) = /home/<user>/eessi/versions/2023.06/software/linux/x86_64/amd/zen2
module-extensions (E) = True
packagepath (E) = /tmp/<user>/easybuild/packages
prefix (E) = /tmp/<user>/easybuild
read-only-installdir (E) = True
repositorypath (E) = /tmp/<user>/easybuild/ebfiles_repo
robot-paths (D) = /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2/software/EasyBuild/4.9.4/easybuild/easyconfigs
rpath (E) = True
sourcepath (E) = /tmp/<user>/easybuild/sources
sticky-bit (E) = True
sysroot (E) = /cvmfs/software.eessi.io/versions/2023.06/compat/linux/x86_64
trace (E) = True
umask (E) = 077
zip-logs (E) = bzip2
Apart from the installpath
, this is exactly how EasyBuild is configured when software is built for EESSI itself.
Note
Be aware that EESSI-extend
will optimize the installation for your current hardware architecture, and the installpath
also contains this architecture in it's directory structure (just like regular EESSI installations do). This means you should run the installation on the node type on which you also want to use the software. If you want the installation to be present for multiple node types, you can simply run it once on each type of node.
And, if we check our MODULEPATH
, we see that the installpath
that EasyBuild will use here is prepended
$ echo $MODULEPATH
/home/<user>/eessi/versions/2023.06/software/linux/x86_64/amd/zen2/modules/all:...
Building¶
Now, you are ready to build. For example, suppose you want to install netcdf4-python-1.6.5-foss-2023b.eb
(which is not present at the time of writing), you run:
Note
If this netCDF for python module is available by the time you are trying, you can force a local rebuild by adding the --rebuild
argument in order to experiment with building locally, or pick a different EasyConfig to build.
Using the newly built module¶
If the installation was done in the site installation path (i.e. EESSI_SITE_INSTALL
was set, and things were installed in /cvmfs/software.eessi.io/host_injections/...
), the modules are available by default to anyone who has initialized the EESSI software environment.
If the installation through EESSI-extend
was done in a EESSI_PROJECT_INSTALL
or EESSI_USER_INSTALL
location, one has to make sure to load the EESSI-extend
module before loading the module of interest, since this adds those prefixes to the MODULEPATH
.
If we don't have the EESSI-extend
module loaded, it will not find any modules installed in the EESSI_PROJECT_INSTALL
or EESSI_USER_INSTALL
locations:
$ module unload EESSI-extend
$ module av netcdf4-python/1.6.5-foss-2023b
No module(s) or extension(s) found!
But, if we load EESSI-extend
first:
$ module load EESSI-extend/2023.06-easybuild
$ module av netcdf4-python/1.6.5-foss-2023b
---- /home/<user>/eessi/versions/2023.06/software/linux/x86_64/amd/zen2/modules/all ----
netcdf4-python/1.6.5-foss-2023b
This means you'll always need to load the EESSI-extend
module if you want to use these modules (also, and particularly when you want to use them in a job script).
Manually building software op top of EESSI (without EasyBuild)¶
Warning
We are working on a module file that should make building on top of EESSI (without using EasyBuild)
more straightforward, particularly when using Autotools
or CMake
. Right now, it is a little convoluted
and requires you to have a decent grasp of
* What a runtime dynamic linker (ld-linux*.so
) is and does
* How to influence the behaviour of the runtime linker with LD_LIBRARY_PATH
* The difference between LIBRARY_PATH
and LD_LIBRARY_PATH
As such, this documentation is intended for "experts" in the runtime linker and it's behaviour, and most cases are untested. Any feedback on this topic is highly appreciated.
Building and running software on top of EESSI without EasyBuild is not straightforward and requires some considerations to take care of.
It is expected that you will have loaded all of your required dependencies as modules from the EESSI environment. Since EESSI sets
LIBRARY_PATH
for all of the modules and the GCC
compiler is configured to use the compat layer, there should be no additional configuration
required to execute a standard build process. On the other hand, EESSI does not set LD_LIBRARY_PATH
so, at runtime, the executable will need help
finding the libraries that it needs to actually execute. The easiest way to circumvent this requirement is by setting the environment variable LD_RUN_PATH
during compile time as well. With LD_RUN_PATH
set, the program will be able to tell the dynamic linker to search in those paths when the program is being
executed.
EESSI uses a compatibility layer to ensure that it takes as few libraries from the host as possible. The safest way to make sure all libraries will point to the required locations in the compatibility layer (and do not leak in from the host operating system) is starting an EESSI prefix shell before building. To do this:
- First of all, load the environment by starting an EESSI shell as described here.
- Load all dependencies you need to build your software. You must use at least a toolchain from EESSI to compile it (
foss
is a good option as it will also include MPI with OpenMPI and math libraries via FlexiBLAS/FFTW). - Set manually
LD_RUN_PATH
to resolve libraries at runtime.LIBRARY_PATH
should contain all the paths we need, and we also need to include the path tolibstdc++
from our GCC installation to avoid picking up the one from the host: -
Compile and make sure the library resolution points to the EESSI stack. For this,
ldd
from compatibility layer and not/usr/bin/ldd
should be used when checking the binary. -
Run!
Warning
RPATH should never point to a compatibility layer directory, only to software layer ones, as all resolving is done via the runtime linker (ld-linux*.so
)
that is shipped with EESSI, which automatically searches these locations.
The biggest downside of this approach is that your executable becomes bound to the architecture you linked your libraries for, i.e., if you add to your executable RPATH a libhdf5.so
compiled for intel_avx512
, you will not be able to run that binary on a machine with a different architecture. If this is an issue for you, you should look into how EESSI itself organises the location of binaries and perhaps leverage the relevant environment variables (e.g., EESSI_SOFTWARE_SUBDIR
).