Adding Environment Modules support to EESSI¶
The European Environment for Scientific Software Installations (EESSI) is a collaboration among European HPC centres and industry partners aiming to provide a common, optimized stack of scientific software installations usable across diverse systems (HPC clusters, workstations, cloud) regardless of Linux distribution or CPU architecture
This document analyzes the EESSI framework to determine how it can be adapted to support the Environment Modules tool alongside the existing Lmod support.
Providing equivalent functionality¶
Here we analyze the content of the EESSI CVMFS repository to find the files that are specific to Lmod and define how they should be ported to provide the same functionality with Environment Modules.
Files not mentioned here, like init/lmod_eessi_archdetect_wrapper.sh, do
not need to be adapted to get used in an Environment Modules context.
init/modules/EESSI/2025.06.lua module¶
This Lua modulefile requires a corresponding Tcl version for Environment Modules to interpret it. Below are the commands to use when creating the equivalent Tcl modulefile to ensure the same functionality:
reportprocedure is equivalent toLmodMessage(execution should be restricted toloadevaluation mode to avoid polluting other modes)errorcommand is equivalent toLmodErrormodule-help(v5.6+) is equivalent tohelp(if version below 5.6 is expected, define aModulesHelpprocedure)module-tagcommand is equivalent toadd_property(needed to define thestickytag)uname machinemodulefile command is equivalent than callinguname -min a sub-processversioncmpcommand helps to compare software release number (likeconvertToCanonicaldoes in Lua)
init/bash script¶
Among other things this script sources module tool initialization script, then
use the module command to setup environment.
The only adaptation required is to source the Environment Modules initialization script if this module tool is selected.
init/lmod/<shell> scripts¶
This scripts initializes module tool the following way:
reset
MODULEPATHto only point to EESSI modulepathsource module tool initialization script
if initialization has not been performed yet:
it load default modules defined externally in
LMOD_SYSTEM_DEFAULT_MODULESor loadEESSI/$EESSI_VERSIONdefine this as the initial environment
otherwise, module tool refresh shell alias and functions in currently loaded modules
Sourcing Environment Modules initialization script will setup the initial
environment defined in its initrc configuration script unless either the
MODULEPATH or LOADEDMODULES environment variables are non-empty.
Here the idea is to unset MODULEPATH and LOADEDMODULES to be able to
initialize EESSI environment with the content of initrc. With such
strategy, environment definition is only defined in initrc and not in
every shell initialization script.
#%Module
if {[string length [getenv EESSI_SITE_MODULEPATH]]} {
module use --append [getenv EESSI_SITE_MODULEPATH]
}
module use --append [getenv EESSI_MODULEPATH]
module load EESSI/$EESSI_VERSION
Before unsetting LOADEDMODULES, it is important to purge any eventually
loaded modules, including sticky modules. If such command fails, because for
instance module command is not defined, it should not disturb the script.
The initialization script could look like to setup EESSI environment with Environment Modules:
if [ -z "$__Init_Default_Modules" ]; then
export __Init_Default_Modules=1;
# unset pre-existing module environment
module purge --force --no-redirect 2>/dev/null || true
unset MODULEPATH
unset LOADEDMODULES
fi
# Choose an EESSI CVMFS repository
EESSI_CVMFS_REPO="${EESSI_CVMFS_REPO:-/cvmfs/software.eessi.io}"
# Choose an EESSI version
EESSI_VERSION_DEFAULT="2025.06"
EESSI_VERSION="${EESSI_VERSION:-${EESSI_VERSION_DEFAULT}}"
export EESSI_MODULEPATH="${EESSI_CVMFS_REPO}/versions/${EESSI_VERSION}/init/modules"
. "${EESSI_CVMFS_REPO}/versions/${EESSI_VERSION}/compat/linux/$(uname -m)/usr/share/Modules/init/bash"
The module refresh part could be omitted as Environment Modules
initialization process already performs a refresh if an environment is found
set.
init/Magic_Castle/bash script¶
This script is similar to EESSI Lmod initialization shell scripts described above and the same adaptation strategy could be applied here.
EESSI-extend-easybuild.eb easyconfig file¶
This easyconfig file is there to produce the extra modulefile
EESSI-extend. It contains a large modluafooter variable to define the
content of the modulefile.
A Tcl version of this EESSI-extend modulefile is needed for Environment
Modules. A modtclfooter variable should be added in the easyconfig file to
define the same kind of code than in modluafooter.
The following Tcl code, similar to the one needed for the EESSI Lua module, is needed here to provide the same functionalities than the Lua code:
reportprocedure is equivalent toLmodMessage(execution should be restricted toloadevaluation mode to avoid polluting other modes)errorcommand is equivalent toLmodErrorversioncmpcommand helps to compare software release number (likeconvertToCanonicaldoes in Lua)module loadcommand should be used to translate the if notisloaded()thenload()code block (in order to always define the dependency link, even if it is already loaded)
$EESSI_SOFTWARE_PATH/modules modulepaths¶
These modulepaths contains Lua modulefiles. Environment Modules only supports modulefiles written in Tcl language. Thus Tcl modulefiles are needed in EESSI in addition to Lua modulefiles.
The features used in Lua modulefiles are also available in Tcl modulefiles, thus if Tcl modulefiles are generated by EasyBuild in EESSI repository, they will provide the same functionalities than those provided by Lua modulefiles.
$EESSI_SOFTWARE_PATH/.lmod/lmodrc.lua config file¶
lmodrc.lua config file, pointed by LMOD_RC environment variable is
only used to define location of module cache data.
Environment Modules does not require such file as cache information is
always stored at the root of each modulepath. Just build the cache files with
module cachebuild command in a session where the EESSI modulepaths are
enabled.
As a consequence LMOD_RC and LMOD_CONFIG_DIR environment variable
should not be ported to Environment Modules.
$EESSI_SOFTWARE_PATH/.lmod/SitePackage.lua config file¶
This SitePackage.lua config file has 3 purposes:
Define a Lmod
loadhook througheessi_load_hookfunctionDefine a Lmod
isVisiblehook throughhide_2022b_modulesfunctionCall
load_site_specific_hooksfunction that sources additional site-specificSitePackage.luafiles if they exist
The load hook is used to:
Print warning message when loading specific module to advice to use other version of this module: such warning can be defined in modulepath-specific
.modulercfile with themodule-warncommand introduced in Environment Modules version 5.6.Breaking load of specific module if some files are not found: Environment Modules can achieve the same functionality in modulepath-specific
.modulercfile with themodule-forbidcommand. The local files check will be performed on anymodulecommand but these forbidden modules will be seen already on amodule avail.
The isVisible hook is used to hide modules coming from the 2022b or
12.2.0 toolchains. Environment Modules can achieve the same functionality
with a modulepath-specific .modulerc file that calls module-hide
command for each of these modules. The full module name and version should be
used, not a regular expression or a glob pattern. Thus it is advised to
generate the .modulerc file after looking at the existing modulefiles in
modulepath directory.
To provide the same functionality than the load_site_specific_hooks
function, a siteconfig.tcl config file will be needed that will load
additional site-specific siteconfig.tcl files if they exist. The
source Tcl command should be called from siteconfig.tcl main context
to load these files.
The main siteconfig.tcl file should be placed in a central location within
the EESSI repository and each Environment Modules installation should point to
it via a symbolic link. No LMOD_PACKAGE_PATH environment variable should
be ported to Environment Modules.
Site-specific SitePackage.lua config file¶
As expressed in EESSI issue #456, site-specific SitePackage.lua config
file may be used to apply tuning when loading specific modules. Here it meant
adding environment variable definition into the modulefile evaluation context.
The software provided by EESSI have a generic configuration that may need to be adapted to correctly work on sites, especially things related to the underlying high performance network of the supercomputer.
The recommended way to provide an equivalent functionality is to let site
define the content of a modulefile where they will put all their configuration
specificities. This modulefile would be automatically loaded by the EESSI
modulefile.
With this approach, sites only have to maintain environment definition and not complex hook code in addition to environment definition code. The counterpart is that these environment changes are loaded once and for all even if the modules they relate to are not loaded.
If the strategy to use a site-specific modulefile for this setup does not fit,
a site-specific siteconfig.tcl file can be used with the following kind of
code:
proc load_hook {cmd_str op} {
switch -- [module-info name] {
OpenMPI/5.0.3 {
set itrp [getCurrentModfileInterpName]
interp eval $itrp {
setenv OMPI_MCA_btl ^openib
setenv OMPI_MCA_osc ^ucx
setenv OMPI_MCA_pml ^ucx
}
}
}
}
trace add execution evaluateModulefile enter load_hook
Such site-specific siteconfig.tcl file may be loaded by the main
siteconfig.tcl section as described in the above section.
Adding Environment Modules into EESSI compat layer¶
A Gentoo Ebuild should be developed for Environment Modules to incorporate it into the EESSI compatibility layer.
Branching depending on chosen module tool¶
EESSI project provides to users two ways to initialize. The following sections suggest adaptations to these initialization methods to also support Environment Modules.
Loading an EESSI environment module¶
Provide EESSI Environment Modules initialization shell scripts like EESSI
Lmod initialization shell scripts in a init/envmodules directory (as
init/modules directory already exists for another purpose).
Create a Tcl counterpart for EESSI Lua module. Such Tcl modulefile can be
stored in the same directory as the Lua modulefile: when evaluating the
EESSI/2025.06 module, Lmod will interpret the EESSI/2025.06.lua file
and Environment Modules the EESSI/2025.06 file.
Sourcing the EESSI bash initialization script¶
Introduce the EESSI_MODULE_TOOL environment variable that branches to:
Environment Modules if variable is set to
EnvironmentModulesLmod if variable is not set or if set to
Lmod
Use this EESSI_MODULE_TOOL environment variable in EESSI bash script to
determine the correct module tool initialization script to source.
case "${EESSI_MODULE_TOOL:-Lmod}" in
Lmod) source $EESSI_EPREFIX/usr/share/Lmod/init/bash ;;
EnvironmentModules) source $EESSI_EPREFIX/usr/share/Modules/init/bash ;;
*) error "Module tool '$EESSI_MODULE_TOOL' is not supported" ;;
esac
Such adaptation helps to keep a single bash initialization script whatever
the module tool used.
Reducing maintenance load¶
EESSI/2025.06 modulefile only in Tcl syntax¶
To reduce the maintenance load, it would be nice to have the EESSI
modulefiles only in Tcl and not in both Tcl and Lua syntaxes.
Lmod supports evaluation of Tcl modulefiles, but we need to check that a
syntax understood by both module tools exists to have a single implementation
of EESSI modulefile.
Based on the analysis of EESSI Lua module, the following things should be taken into account:
reportprocedure should be added to Lmod to support an equivalent ofLmodMessagein Tcl evaluation contextmodule-helpis available on Lmod (in the not yet released version after 8.7.65): if EESSI would like to support older Lmod releases, theModulesHelpprocedure should be used insteadadd-propertyshould be used instead ofmodule-tagto define the modulesticky: Environment Modules 5.6+ supports defining a tag with this commanduname machinemodulefile command is supported by Lmodversioncmpmodulefile command is supported by Lmod since 8.4.7
EESSI-extend/2025.06-easybuild modulefile only in Tcl syntax¶
Like for the EESSI module, having only a Tcl modulefile for the
EESSI-extend will help to reduce the overall quantity of code to maintain.
Based on the analysis of EESSI-extend Lua module, the following things
should be taken into account to have a Tcl version of EESSI-extend module
that Lmod is able to evaluate:
reportprocedure should be added to Lmod to support an equivalent ofLmodMessagein Tcl evaluation contextmodule-helpis available on Lmod (in the not yet released version after 8.7.65): if EESSI would like to support older Lmod releases, theModulesHelpprocedure should be used insteadversioncmpmodulefile command is supported by Lmod since 8.4.7depends-onshould be used instead ofmodule loadto defineEasyBuildmodule dependency (to avoid reload of the module by Lmod if it is already loaded)
Decommissioning the EESSI bash initialization script¶
EESSI currently provides two ways for initialization which adds load to the maintenance process. Advertising a single initialization way may simplify things.
Initialization via the EESSI modulefile allows to switch between EESSI
releases.
For a smooth migration, the bash initialization script may at first
redirect to the EESSI modulefile initialization process.