1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375
|
.. _EESSI:
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.
.. _European Environment for Scientific Software Installations: https://www.eessi.io
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.
.. _EESSI Lua module:
``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:
* ``report`` procedure is equivalent to ``LmodMessage`` (execution should be
restricted to ``load`` evaluation mode to avoid polluting other modes)
* ``error`` command is equivalent to ``LmodError``
* ``module-help`` (v5.6+) is equivalent to ``help`` (if version below 5.6 is
expected, define a ``ModulesHelp`` procedure)
* ``module-tag`` command is equivalent to ``add_property`` (needed to define
the ``sticky`` tag)
* ``uname machine`` modulefile command is equivalent than calling ``uname -m``
in a sub-process
* ``versioncmp`` command helps to compare software release number (like
``convertToCanonical`` does in Lua)
.. _EESSI bash script:
``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.
.. _EESSI Lmod initialization shell scripts:
``init/lmod/<shell>`` scripts
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
This scripts initializes module tool the following way:
* reset ``MODULEPATH`` to only point to EESSI modulepath
* source module tool initialization script
* if initialization has not been performed yet:
* it load default modules defined externally in
``LMOD_SYSTEM_DEFAULT_MODULES`` or load ``EESSI/$EESSI_VERSION``
* define 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.
.. code-block:: tcl
#%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:
.. code-block:: sh
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 Lua module:
``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:
* ``report`` procedure is equivalent to ``LmodMessage`` (execution should be
restricted to ``load`` evaluation mode to avoid polluting other modes)
* ``error`` command is equivalent to ``LmodError``
* ``versioncmp`` command helps to compare software release number (like
``convertToCanonical`` does in Lua)
* ``module load`` command should be used to translate the if not
``isloaded()`` then ``load()`` 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 ``load`` hook through ``eessi_load_hook`` function
* Define a Lmod ``isVisible`` hook through ``hide_2022b_modules`` function
* Call ``load_site_specific_hooks`` function that sources additional
site-specific ``SitePackage.lua`` files 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
``.modulerc`` file with the ``module-warn`` command 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
``.modulerc`` file with the ``module-forbid`` command. The local files check
will be performed on any ``module`` command but these forbidden modules will
be seen already on a ``module 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.
.. _EESSI issue #456: https://github.com/EESSI/software-layer/issues/456
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:
.. code-block:: tcl
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 ``EnvironmentModules``
* *Lmod* 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.
.. code-block:: sh
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:
* ``report`` procedure should be added to Lmod to support an equivalent of
``LmodMessage`` in Tcl evaluation context
* ``module-help`` is available on Lmod (in the not yet released version after
8.7.65): if EESSI would like to support older Lmod releases, the
``ModulesHelp`` procedure should be used instead
* ``add-property`` should be used instead of ``module-tag`` to define the
module ``sticky``: Environment Modules 5.6+ supports defining a tag with
this command
* ``uname machine`` modulefile command is supported by Lmod
* ``versioncmp`` modulefile 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:
* ``report`` procedure should be added to Lmod to support an equivalent of
``LmodMessage`` in Tcl evaluation context
* ``module-help`` is available on Lmod (in the not yet released version after
8.7.65): if EESSI would like to support older Lmod releases, the
``ModulesHelp`` procedure should be used instead
* ``versioncmp`` modulefile command is supported by Lmod since 8.4.7
* ``depends-on`` should be used instead of ``module load`` to define
``EasyBuild`` module 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.
.. vim:set tabstop=2 shiftwidth=2 expandtab autoindent:
|