## Lmod Environment

Most supercomputers use a module system to simplify managing a wide variety of software and their versions in a precise and controlled way. Since a supercomputer typically hosts far more software than any one user will need, organizing it efficiently is essential. Each software package often requires specific environment settings—such as modifications to $PATH, $LD_LIBRARY_PATH, and other variables—which can easily conflict with each other or even be mutually exclusive. Additionally, different users or groups often require different versions of the same software, which generally cannot be installed or run simultaneously without careful management.

To address these challenges, the module system encapsulates the necessary environment settings for each piece of software into environment modules. These modules are distinct from programming modules like those in Python and should not be confused with them. Using simple commands, users can list, load, and unload available software modules, making it easy to access exactly the tools they need without interfering with others.

To get a list of all currently loaded modules:

%%bash
ml list
ml  #To get an overview of the currently loaded modules, use module list or ml (without specifying extra arguments):
Currently Loaded Modules:
  1) XALT/3.0.2                                (S)
  2) GCCcore/13.2.0
  3) zlib/1.2.13-GCCcore-13.2.0
  4) binutils/2.40-GCCcore-13.2.0
  5) GCC/13.2.0
  6) numactl/2.0.16-GCCcore-13.2.0
  7) XZ/5.4.4-GCCcore-13.2.0
  8) libxml2/2.11.5-GCCcore-13.2.0
  9) libpciaccess/0.17-GCCcore-13.2.0
 10) hwloc/2.9.2-GCCcore-13.2.0
 11) libevent/2.1.12-GCCcore-13.2.0
 12) UCX/1.15.0-GCCcore-13.2.0
 13) libfabric/1.19.0-GCCcore-13.2.0
 14) PMIx/4.2.6-GCCcore-13.2.0
 15) UCC/1.2.0-GCCcore-13.2.0
 16) OpenMPI/4.1.6-GCC-13.2.0
 17) Julia/1.10.0-linux-x86_64
 18) bzip2/1.0.8-GCCcore-13.2.0
 19) ncurses/6.4-GCCcore-13.2.0
 20) libreadline/8.2-GCCcore-13.2.0
 21) Tcl/8.6.13-GCCcore-13.2.0
 22) SQLite/3.43.1-GCCcore-13.2.0
 23) libffi/3.4.4-GCCcore-13.2.0
 24) Python/3.11.5-GCCcore-13.2.0
 25) libyaml/0.2.5-GCCcore-13.2.0
 26) cffi/1.15.1-GCCcore-13.2.0
 27) cryptography/41.0.5-GCCcore-13.2.0
 28) virtualenv/20.24.6-GCCcore-13.2.0
 29) Python-bundle-PyPI/2023.10-GCCcore-13.2.0
 30) PyYAML/6.0.1-GCCcore-13.2.0
 31) OpenPGM/5.2.122-GCCcore-13.2.0
 32) libsodium/1.0.19-GCCcore-13.2.0
 33) util-linux/2.39-GCCcore-13.2.0
 34) ZeroMQ/4.3.5-GCCcore-13.2.0
 35) PyZMQ/25.1.2-GCCcore-13.2.0
 36) tornado/6.4-GCCcore-13.2.0
 37) BeautifulSoup/4.12.2-GCCcore-13.2.0
 38) jupyter-server/2.14.0-GCCcore-13.2.0
 39) JupyterLab/4.2.0-GCCcore-13.2.0
 40) libxslt/1.1.38-GCCcore-13.2.0
 41) lxml/4.9.3-GCCcore-13.2.0
 42) jedi/0.19.1-GCCcore-13.2.0
 43) IPython/8.17.2-GCCcore-13.2.0
 44) JupyterNotebook/7.2.0-GCCcore-13.2.0

  Where:
   S:  Module is Sticky, requires --force to unload or purge

 


Currently Loaded Modules:
  1) XALT/3.0.2                                (S)
  2) GCCcore/13.2.0
  3) zlib/1.2.13-GCCcore-13.2.0
  4) binutils/2.40-GCCcore-13.2.0
  5) GCC/13.2.0
  6) numactl/2.0.16-GCCcore-13.2.0
  7) XZ/5.4.4-GCCcore-13.2.0
  8) libxml2/2.11.5-GCCcore-13.2.0
  9) libpciaccess/0.17-GCCcore-13.2.0
 10) hwloc/2.9.2-GCCcore-13.2.0
 11) libevent/2.1.12-GCCcore-13.2.0
 12) UCX/1.15.0-GCCcore-13.2.0
 13) libfabric/1.19.0-GCCcore-13.2.0
 14) PMIx/4.2.6-GCCcore-13.2.0
 15) UCC/1.2.0-GCCcore-13.2.0
 16) OpenMPI/4.1.6-GCC-13.2.0
 17) Julia/1.10.0-linux-x86_64
 18) bzip2/1.0.8-GCCcore-13.2.0
 19) ncurses/6.4-GCCcore-13.2.0
 20) libreadline/8.2-GCCcore-13.2.0
 21) Tcl/8.6.13-GCCcore-13.2.0
 22) SQLite/3.43.1-GCCcore-13.2.0
 23) libffi/3.4.4-GCCcore-13.2.0
 24) Python/3.11.5-GCCcore-13.2.0
 25) libyaml/0.2.5-GCCcore-13.2.0
 26) cffi/1.15.1-GCCcore-13.2.0
 27) cryptography/41.0.5-GCCcore-13.2.0
 28) virtualenv/20.24.6-GCCcore-13.2.0
 29) Python-bundle-PyPI/2023.10-GCCcore-13.2.0
 30) PyYAML/6.0.1-GCCcore-13.2.0
 31) OpenPGM/5.2.122-GCCcore-13.2.0
 32) libsodium/1.0.19-GCCcore-13.2.0
 33) util-linux/2.39-GCCcore-13.2.0
 34) ZeroMQ/4.3.5-GCCcore-13.2.0
 35) PyZMQ/25.1.2-GCCcore-13.2.0
 36) tornado/6.4-GCCcore-13.2.0
 37) BeautifulSoup/4.12.2-GCCcore-13.2.0
 38) jupyter-server/2.14.0-GCCcore-13.2.0
 39) JupyterLab/4.2.0-GCCcore-13.2.0
 40) libxslt/1.1.38-GCCcore-13.2.0
 41) lxml/4.9.3-GCCcore-13.2.0
 42) jedi/0.19.1-GCCcore-13.2.0
 43) IPython/8.17.2-GCCcore-13.2.0
 44) JupyterNotebook/7.2.0-GCCcore-13.2.0

  Where:
   S:  Module is Sticky, requires --force to unload or purge

 

To get an overview of all available modules, you can use ml avail or simply ml av:

%%bash
ml avail
------------------------------ /apps/modules/ai -------------------------------
   PyTorch/2.1.2-foss-2023a-CUDA-12.1.1    jax/0.4.25-gfbf-2023a-CUDA-12.1.1

----------------------------- /apps/modules/base ------------------------------
   Extrae/4.2.3-gompi-2023b    Extrae/4.2.3-nvompi-2024.3 (D)

------------------------------ /apps/modules/bio ------------------------------
   Biopython/1.79-foss-2022a
   GROMACS/4.5.5-gompi-2020c-ORCA-5.0.1
   GROMACS/2021.4-fosscuda-2020b-PLUMED-2.7.3
   GROMACS/2022-fosscuda-2020b
   GROMACS/2023-foss-2022a-CUDA-12.2.0-PLUMED-2.9.0-mpi
   GROMACS/2023-foss-2022a-CUDA-12.2.0-PLUMED-2.9.0
   GROMACS/2023.4-gompi-2020c-ORCA-5.0.1-double-precision
   GROMACS/2024.1-foss-2023b                              (D)
   HH-suite/3.3.0-gompi-2022a
   HMMER/3.3.2-gompi-2022a
   Kalign/3.3.5-GCCcore-11.3.0
   OpenMM/8.0.0-foss-2022a-CUDA-11.7.0

------------------------------ /apps/modules/cae ------------------------------
   OpenFOAM/v2312-foss-2023a        STAR-CCM+/17.06.008-r8
   OpenFOAM/9-intel-2021a    (D)    STAR-CCM+/18.06.006-r8 (D)
   STAR-CCM+/17.06.007

----------------------------- /apps/modules/chem ------------------------------
   ABINIT/9.10.3-intel-2022a
   ASE/3.22.1-gfbf-2023b
   Amber/22.0-foss-2022a-AmberTools-23.3-CUDA-11.7.0
   BEEF/0.1.1-intel-2020a
   CASTEP/25.12-intel-2024a                                                  (D)
   CP2K/9.1-foss-2022a
   CP2K/2023.1-foss-2023a
   CP2K/2025.1-foss-2023a                                                    (D)
   CRYSTAL/17-intel-2020a-1.0.2
   CRYSTAL/23-intel-compilers-2021.4.0-OpenMPI-4.1.1-1.0.1-Pdistrib
   CRYSTAL/23-intel-compilers-2021.4.0-OpenMPI-4.1.1-1.0.1-PdistribOMP-v2
   CRYSTAL/23-intel-compilers-2021.4.0-OpenMPI-4.1.1-1.0.1-PdistribOMP       (D)
   Cc4s/d43a228088bfb4f9822fe548e46586c8943ecc6d-intel-2022b
   Critic2/1.1stable-intel-2020b
   DFT-D4/3.6.0-intel-2022b-Python-3.10.8
   DFT-D4/3.6.0-intel-2023b-Python-3.11.5                                    (D)
   DMACRYS/2.3.1-intel-2019a
   LAMMPS/2Aug2023_update2-foss-2023a-kokkos-CUDA-12.1.1
   LAMMPS/2Aug2023_update2-foss-2023a-kokkos
   LAMMPS/23Jun2022-foss-2021b-kokkos
   LAMMPS/29Aug2024_update2-foss-2023a-kokkos                                (D)
   Libint/2.7.2-GCC-11.3.0-lmax-6-cp2k
   Libint/2.7.2-GCC-12.3.0-lmax-6-cp2k                                       (D)
   MDI/1.4.26-gompi-2023a
   MRCC/20230828-intel-2021b
   Molden/7.3-GCCcore-12.3.0
   Molpro/mpp-2022.2.2.linux_x86_64_mpipr
   Molpro/mpp-2022.2.2.linux_x86_64_sockets
   Molpro/mpp-2024.1.0.linux_x86_64_mpipr                                    (D)
   NEIGHCRYS/2.3.1.1-intel-2019a
   ORCA/5.0.1-OpenMPI-4.1.1
   ORCA/5.0.3-OpenMPI-4.1.1
   ORCA/6.0.0-gompi-2023a-avx2
   ORCA/6.0.1-gompi-2023b-avx2                                               (D)
   Octopus/2aada6cb0732113638b17ddf6f7f0be0-intel-2020b-mpi-parallel-restart
   Octopus/11.3-intel-2020b-mpi
   Octopus/14.1-intel-2023b-mpi                                              (D)
   OpenVDB/11.0.0-foss-2022b-Python-3.10.8
   PLATON/130524-GCCcore-13.2.0
   PLUMED/2.6.2-foss-2020b
   PLUMED/2.7.3-foss-2021b
   PLUMED/2.7.3-fosscuda-2020b
   PLUMED/2.8.1-foss-2022a
   PLUMED/2.8.1-intel-2022a
   PLUMED/2.9.0-foss-2022a-mpi
   PLUMED/2.9.0-foss-2022a
   PLUMED/2.9.0-foss-2023a                                                   (D)
   PMIN/2015-03-12-intel-2023b
   QuantumESPRESSO/6.7-intel-2020a-MaX
   QuantumESPRESSO/7.2-intel-2021a
   QuantumESPRESSO/7.3.1-NVHPC-24.3-CUDA-12.3.0                              (D)
   TURBOMOLE/7.5.0-mpi
   TURBOMOLE/7.5.0-smp                                                       (D)
   VASP/5.4.4-intel-2020a-mkl=sequential-VASPsol                             (Lic)
   VASP/5.4.4-intel-2020a-mkl=sequential-VTST-184                            (Lic)
   VASP/5.4.4-intel-2020a-mkl=sequential                                     (Lic)
   VASP/6.3.1-intel-2022b-Cc4s                                               (Lic)
   VASP/6.4.2-intel-2022b-DFT-D4                                             (Lic)
   VASP/6.4.2-intel-2022b-libxc-6.1.0                                        (Lic)
   VASP/6.4.2-intel-2022b-libxc-7.0.0                                        (Lic)
   VASP/6.4.2-intel-2022b                                                    (Lic)
   VASP/6.4.2-NVHPC-24.3-CUDA-12.3.0-CUDA-12.2.0                             (G,Lic)
   VASP/6.4.3-intel-2022b-libxc-6.1.0                                        (Lic)
   VASP/6.4.3-intel-2022b-libxc-7.0.0                                        (Lic)
   VASP/6.5.1-intel-2024a                                                    (Lic)
   VASP/6.5.1-NVHPC-24.3-CUDA-12.3.0-CUDA-12.3.0                             (G,Lic,D)
   Wannier90/3.1.0-intel-2021b-serial
   Wannier90/3.1.0-intel-2022a
   Wannier90/3.1.0-intel-2022b-serial
   Wannier90/3.1.0-intel-2023b-serial
   Wannier90/3.1.0-intel-2024a-serial                                        (D)
   dftd3-lib/0.9.2-GCC-11.3.0
   dftd3-lib/0.9.2-GCC-12.3.0                                                (D)
   dftd4/3.7.0-foss-2023a
   gdma/6b8e81ec141fade2cc24c142d58ce82178c85f61
   kim-api/2.3.0-GCC-11.2.0
   kim-api/2.3.0-GCC-11.3.0
   kim-api/2.3.0-GCC-12.3.0                                                  (D)
   libcint/5.5.0-gfbf-2023b
   libvdwxc/0.4.0-foss-2022a
   libxc/4.3.4-intel-2020b
   libxc/5.1.5-intel-compilers-2021.2.0
   libxc/5.1.5-intel-2020a
   libxc/5.1.6-intel-compilers-2021.4.0
   libxc/5.2.3-GCC-11.3.0
   libxc/5.2.3-intel-compilers-2022.1.0
   libxc/6.1.0-intel-compilers-2022.2.1-nofhc
   libxc/6.2.2-GCC-12.3.0
   libxc/6.2.2-intel-compilers-2023.2.1
   libxc/6.2.2-NVHPC-24.3-CUDA-12.3.0
   libxc/7.0.0-intel-compilers-2022.2.1-nofhc                                (D)
   mctc-lib/0.3.1-GCC-12.3.0
   mstore/0.3.0-GCC-12.3.0
   mulfit/2.1.03
   multicharge/0.3.0-gfbf-2023a
   pymatgen/2022.0.12-foss-2020b
   qchem/6.2.0                                                               (Lic)
   spglib-python/1.16.0-foss-2020b
   spglib-python/2.1.0-gfbf-2023b                                            (D)
   spglib/2.5.0-GCCcore-12.3.0

--------------------------- /apps/modules/compiler ----------------------------
   AOCC/4.2.0-GCCcore-12.2.0
   AOCC/5.0.0-GCCcore-14.2.0               (D)
   Clang/13.0.1-GCCcore-11.3.0-CUDA-11.7.0
   Clang/16.0.6-GCCcore-12.3.0
   Clang/17.0.2-GCCcore-12.2.0
   Clang/17.0.3-GCCcore-12.2.0
   Clang/18.1.8-GCCcore-13.2.0-CUDA-12.4.0 (D)
   GCC/9.3.0
   GCC/10.2.0
   GCC/10.3.0
   GCC/11.2.0
   GCC/11.3.0
   GCC/12.2.0
   GCC/12.3.0
   GCC/13.2.0                              (L)
   GCC/13.3.0
   GCC/14.2.0                              (D)
   GCCcore/8.2.0
   GCCcore/9.3.0
   GCCcore/10.2.0
   GCCcore/10.3.0
   GCCcore/11.2.0
   GCCcore/11.3.0
   GCCcore/12.2.0
   GCCcore/12.3.0
   GCCcore/13.2.0                          (L)
   GCCcore/13.3.0
   GCCcore/14.2.0                          (D)
   Go/1.17.6
   Go/1.22.1                               (D)
   LLVM/11.0.0-GCCcore-10.2.0
   LLVM/11.1.0-GCCcore-10.3.0
   LLVM/12.0.1-GCCcore-11.2.0
   LLVM/14.0.3-GCCcore-11.3.0
   LLVM/15.0.5-GCCcore-12.2.0
   LLVM/16.0.6-GCCcore-12.3.0
   LLVM/16.0.6-GCCcore-13.2.0
   LLVM/18.1.8-GCCcore-13.3.0              (D)
   NVHPC/22.2
   NVHPC/22.7-CUDA-11.7.0
   NVHPC/23.5
   NVHPC/23.11
   NVHPC/24.1-CUDA-12.4.0
   NVHPC/24.3-CUDA-12.3.0
   NVHPC/25.3-CUDA-12.8.0                  (D)
   icc/2019.1.144-GCC-8.2.0-2.31.1
   iccifort/2020.1.217
   iccifort/2020.4.304                     (D)
   ifort/2019.1.144-GCC-8.2.0-2.31.1
   intel-compilers/2021.2.0
   intel-compilers/2021.4.0
   intel-compilers/2022.1.0
   intel-compilers/2022.2.1
   intel-compilers/2023.0.0
   intel-compilers/2023.1.0
   intel-compilers/2023.2.1
   intel-compilers/2024.2.0                (D)

----------------------------- /apps/modules/data ------------------------------
   BeautifulSoup/4.12.2-GCCcore-13.2.0 (L)
   CDO/2.2.2-gompi-2023b
   HDF5/1.10.6-iimpi-2020a
   HDF5/1.10.6-intel-2020a
   HDF5/1.10.6-intel-2020b-parallel
   HDF5/1.10.7-gompi-2021a
   HDF5/1.10.7-iimpi-2021a
   HDF5/1.12.1-foss-2021b-parallel
   HDF5/1.12.1-gompi-2021b
   HDF5/1.12.1-intel-2021b-parallel
   HDF5/1.12.2-gompi-2022a
   HDF5/1.12.2-iimpi-2022a
   HDF5/1.14.0-gompi-2022b
   HDF5/1.14.0-gompi-2023a
   HDF5/1.14.0-iimpi-2022b-serial
   HDF5/1.14.0-iimpi-2022b
   HDF5/1.14.3-gompi-2023b
   HDF5/1.14.3-iimpi-2023b
   HDF5/1.14.3-iimpi-2024a
   HDF5/1.14.3-NVHPC-24.1-CUDA-12.4.0
   HDF5/1.14.3-NVHPC-24.3-CUDA-12.3.0
   HDF5/1.14.4-GCC-11.3.0-serial       (D)
   LAME/3.100-GCCcore-10.3.0
   LAME/3.100-GCCcore-11.2.0
   LAME/3.100-GCCcore-11.3.0
   LAME/3.100-GCCcore-12.2.0
   LAME/3.100-GCCcore-12.3.0
   LAME/3.100-GCCcore-13.2.0
   LAME/3.100-GCCcore-13.3.0           (D)
   PnetCDF/1.12.3-gompi-2021b
   PnetCDF/1.12.3-gompi-2022a          (D)
   PostgreSQL/16.1-GCCcore-12.3.0
   dill/0.3.6-GCCcore-11.3.0
   dill/0.3.7-GCCcore-12.3.0           (D)
   h5py/3.2.1-foss-2021a
   h5py/3.7.0-foss-2022a
   h5py/3.9.0-foss-2023a               (D)
   netCDF-Fortran/4.5.2-intel-2020a
   netCDF-Fortran/4.5.3-gompi-2021b
   netCDF-Fortran/4.5.3-intel-2020b
   netCDF-Fortran/4.6.0-gompi-2022a
   netCDF-Fortran/4.6.0-iimpi-2022a
   netCDF-Fortran/4.6.1-gompi-2023b
   netCDF-Fortran/4.6.1-iimpi-2023b
   netCDF-Fortran/4.6.1-iimpi-2024a    (D)
   netCDF/4.7.3-intel-2020a
   netCDF/4.7.4-intel-2020b
   netCDF/4.8.0-iimpi-2021a
   netCDF/4.8.1-gompi-2021b
   netCDF/4.9.0-gompi-2022a
   netCDF/4.9.0-gompi-2022b
   netCDF/4.9.0-iimpi-2022a
   netCDF/4.9.2-gompi-2023a
   netCDF/4.9.2-gompi-2023b
   netCDF/4.9.2-iimpi-2023b
   netCDF/4.9.2-iimpi-2024a            (D)

--------------------------- /apps/modules/debugger ----------------------------
   Forge/23.1.2    TotalView/2022.1.11    Valgrind/3.21.0-gompi-2023a

----------------------------- /apps/modules/devel -----------------------------
   Autoconf/2.69-foss-2022b
   Autoconf/2.69-GCCcore-8.2.0
   Autoconf/2.69-GCCcore-9.3.0
   Autoconf/2.69-GCCcore-10.2.0
   Autoconf/2.69
   Autoconf/2.71-foss-2022b
   Autoconf/2.71-GCCcore-10.3.0
   Autoconf/2.71-GCCcore-11.2.0
   Autoconf/2.71-GCCcore-11.3.0
   Autoconf/2.71-GCCcore-12.2.0
   Autoconf/2.71-GCCcore-12.3.0
   Autoconf/2.71-GCCcore-13.2.0
   Autoconf/2.71
   Autoconf/2.72-GCCcore-13.3.0
   Autoconf/2.72-GCCcore-14.2.0                              (D)
   Automake/1.16
   Automake/1.16.1-GCCcore-8.2.0
   Automake/1.16.1-GCCcore-9.3.0
   Automake/1.16.1
   Automake/1.16.2-GCCcore-10.2.0
   Automake/1.16.3-GCCcore-10.3.0
   Automake/1.16.4-GCCcore-11.2.0
   Automake/1.16.5-GCCcore-11.3.0
   Automake/1.16.5-GCCcore-12.2.0
   Automake/1.16.5-GCCcore-12.3.0
   Automake/1.16.5-GCCcore-13.2.0
   Automake/1.16.5-GCCcore-13.3.0
   Automake/1.16.5-GCCcore-14.2.0
   Automake/1.16.5
   Automake/1.17-GCCcore-14.2.0                              (D)
   Autotools/20180311-GCCcore-8.2.0
   Autotools/20180311-GCCcore-9.3.0
   Autotools/20180311
   Autotools/20200321-GCCcore-10.2.0
   Autotools/20210128-GCCcore-10.3.0
   Autotools/20210726-GCCcore-11.2.0
   Autotools/20220317-GCCcore-11.3.0
   Autotools/20220317-GCCcore-12.2.0
   Autotools/20220317-GCCcore-12.3.0
   Autotools/20220317-GCCcore-13.2.0
   Autotools/20220317
   Autotools/20231222-GCCcore-13.3.0
   Autotools/20231222-GCCcore-14.2.0
   Autotools/20240712-GCCcore-14.2.0                         (D)
   Bazel/5.1.1-GCCcore-11.3.0
   Bazel/6.1.0-GCCcore-12.3.0
   Bazel/6.3.1-GCCcore-12.3.0                                (D)
   Boost/1.72.0-intel-2020a
   Boost/1.74.0-GCC-10.2.0
   Boost/1.76.0-GCC-10.3.0
   Boost/1.76.0-intel-compilers-2021.2.0
   Boost/1.77.0-GCC-10.2.0-Python-3.8.6
   Boost/1.77.0-GCC-11.2.0
   Boost/1.77.0-gompi-2021a
   Boost/1.77.0-intel-compilers-2021.4.0
   Boost/1.79.0-GCC-11.3.0
   Boost/1.79.0-intel-compilers-2022.1.0
   Boost/1.81.0-GCC-12.2.0
   Boost/1.82.0-GCC-12.3.0
   Boost/1.83.0-GCC-13.2.0                                   (D)
   CMake/3.16.2
   CMake/3.16.4-GCCcore-9.3.0
   CMake/3.18.4-GCCcore-10.2.0
   CMake/3.20.1-GCCcore-10.2.0
   CMake/3.20.1-GCCcore-10.3.0
   CMake/3.20.1
   CMake/3.21.1-GCCcore-11.2.0
   CMake/3.22.1-GCCcore-11.2.0
   CMake/3.23.1-GCCcore-11.3.0
   CMake/3.24.3-GCCcore-11.3.0
   CMake/3.24.3-GCCcore-12.2.0
   CMake/3.26.3-GCCcore-12.3.0
   CMake/3.27.6-GCCcore-13.2.0
   CMake/3.29.3-GCCcore-13.3.0
   CMake/3.30.5-GCCcore-14.2.0
   CMake/3.31.3-GCCcore-14.2.0                               (D)
   DBus/1.13.18-GCCcore-10.2.0
   DBus/1.13.18-GCCcore-10.3.0
   DBus/1.13.18-GCCcore-11.2.0
   DBus/1.15.2-GCCcore-12.2.0
   DBus/1.15.4-GCCcore-12.3.0
   DBus/1.15.8-GCCcore-13.2.0
   DBus/1.15.8-GCCcore-13.3.0                                (D)
   Doxygen/1.8.17-GCCcore-9.3.0
   Doxygen/1.8.20-GCCcore-10.2.0
   Doxygen/1.9.1-GCCcore-10.3.0
   Doxygen/1.9.1-GCCcore-11.2.0
   Doxygen/1.9.4-GCCcore-11.3.0
   Doxygen/1.9.5-GCCcore-12.2.0
   Doxygen/1.9.7-GCCcore-12.3.0
   Doxygen/1.9.8-GCCcore-13.2.0
   Doxygen/1.11.0-GCCcore-13.3.0
   Doxygen/1.11.0-GCCcore-14.2.0                             (D)
   GObject-Introspection/1.66.1-GCCcore-10.2.0
   GObject-Introspection/1.68.0-GCCcore-10.3.0
   GObject-Introspection/1.68.0-GCCcore-11.2.0
   GObject-Introspection/1.74.0-GCCcore-12.2.0-Python-3.10.8
   GObject-Introspection/1.74.0-GCCcore-12.2.0
   GObject-Introspection/1.76.1-GCCcore-12.3.0
   GObject-Introspection/1.78.1-GCCcore-13.2.0
   GObject-Introspection/1.80.1-GCCcore-13.3.0               (D)
   HyperQueue/0.22.0-rc1
   HyperQueue/0.22.0                                         (D)
   M4/1.4.18-GCCcore-8.2.0
   M4/1.4.18-GCCcore-9.3.0
   M4/1.4.18-GCCcore-10.2.0
   M4/1.4.18-GCCcore-10.3.0
   M4/1.4.18
   M4/1.4.19-GCCcore-11.2.0
   M4/1.4.19-GCCcore-11.3.0
   M4/1.4.19-GCCcore-12.2.0
   M4/1.4.19-GCCcore-12.3.0
   M4/1.4.19-GCCcore-13.2.0
   M4/1.4.19-GCCcore-13.3.0
   M4/1.4.19-GCCcore-14.2.0
   M4/1.4.19                                                 (D)
   Mako/1.1.3-GCCcore-10.2.0
   Mako/1.1.4-GCCcore-10.3.0
   Mako/1.1.4-GCCcore-11.2.0
   Mako/1.2.0-GCCcore-11.3.0
   Mako/1.2.4-GCCcore-12.2.0
   Mako/1.2.4-GCCcore-12.3.0
   Mako/1.2.4-GCCcore-13.2.0
   Mako/1.3.5-GCCcore-13.3.0                                 (D)
   Maven/3.6.3
   PCRE/8.44-GCCcore-10.2.0
   PCRE/8.45-GCCcore-11.2.0
   PCRE/8.45-GCCcore-11.3.0
   PCRE/8.45-GCCcore-12.2.0
   PCRE/8.45-GCCcore-12.3.0
   PCRE/8.45                                                 (D)
   PCRE2/10.35-GCCcore-10.2.0
   PCRE2/10.36-GCCcore-10.3.0
   PCRE2/10.37-GCCcore-11.2.0
   PCRE2/10.40-GCCcore-12.2.0
   PCRE2/10.42-GCCcore-12.3.0
   PCRE2/10.42-GCCcore-13.2.0
   PCRE2/10.43-GCCcore-13.3.0                                (D)
   PyZMQ/25.1.2-GCCcore-13.2.0                               (L)
   Qt5/5.14.2-GCCcore-10.2.0
   Qt5/5.15.2-GCCcore-10.3.0
   Qt5/5.15.2-GCCcore-11.2.0
   Qt5/5.15.7-GCCcore-12.2.0
   Qt5/5.15.10-GCCcore-12.3.0
   Qt5/5.15.13-GCCcore-13.2.0                                (D)
   Qt6/6.6.0-GCCcore-12.2.0
   Qt6/6.7.2-GCCcore-13.3.0                                  (D)
   SQLite/3.27.2
   SQLite/3.31.1-GCCcore-9.3.0
   SQLite/3.33.0-GCCcore-9.3.0
   SQLite/3.33.0-GCCcore-10.2.0
   SQLite/3.35.4-GCCcore-10.3.0
   SQLite/3.36-GCCcore-11.2.0
   SQLite/3.38.3-GCCcore-11.3.0
   SQLite/3.39.4-GCCcore-12.2.0
   SQLite/3.42.0-GCCcore-12.3.0
   SQLite/3.43.1-GCCcore-13.2.0                              (L)
   SQLite/3.45.3-GCCcore-13.3.0
   SQLite/3.45.3-GCCcore-14.2.0
   SQLite/3.47.2-GCCcore-14.2.0                              (D)
   SWIG/4.0.2-GCCcore-11.3.0
   Spack/0.21.2
   VSCode/1.85.0
   ZeroMQ/4.3.5-GCCcore-13.2.0                               (L)
   flatbuffers-python/2.0-GCCcore-11.3.0
   flatbuffers-python/23.5.26-GCCcore-12.3.0                 (D)
   flatbuffers/2.0.7-GCCcore-11.3.0
   flatbuffers/23.5.26-GCCcore-12.3.0                        (D)
   fonttools/4.53.1-GCCcore-13.3.0
   gperf/3.1-GCCcore-10.2.0
   gperf/3.1-GCCcore-10.3.0
   gperf/3.1-GCCcore-11.2.0
   gperf/3.1-GCCcore-11.3.0
   gperf/3.1-GCCcore-12.2.0
   gperf/3.1-GCCcore-12.3.0
   gperf/3.1-GCCcore-13.2.0
   gperf/3.1-GCCcore-13.3.0
   gperf/3.1-GCCcore-14.2.0                                  (D)
   intltool/0.51.0-GCCcore-9.3.0
   intltool/0.51.0-GCCcore-10.2.0
   intltool/0.51.0-GCCcore-10.3.0
   intltool/0.51.0-GCCcore-11.2.0
   intltool/0.51.0-GCCcore-11.3.0
   intltool/0.51.0-GCCcore-12.2.0
   intltool/0.51.0-GCCcore-12.3.0
   intltool/0.51.0-GCCcore-13.2.0
   intltool/0.51.0-GCCcore-13.3.0
   intltool/0.51.0-GCCcore-14.2.0                            (D)
   libdwarf/20210305-GCCcore-10.3.0
   libelf/0.8.13-GCCcore-10.3.0
   make/4.3-GCCcore-9.3.0
   make/4.3-GCCcore-10.2.0
   make/4.3-GCCcore-10.3.0
   make/4.3-GCCcore-11.2.0
   make/4.3-GCCcore-11.3.0
   make/4.3-GCCcore-12.2.0
   make/4.4.1-GCCcore-12.2.0
   make/4.4.1-GCCcore-12.3.0
   make/4.4.1-GCCcore-13.2.0
   make/4.4.1-GCCcore-13.3.0                                 (D)
   makedepend/1.0.7-GCCcore-12.3.0
   makeinfo/6.7-GCCcore-9.3.0-minimal
   makeinfo/6.7-GCCcore-10.2.0-minimal
   makeinfo/6.7-GCCcore-10.3.0-minimal
   makeinfo/6.8-GCCcore-11.2.0                               (D)
   ncurses/6.1
   ncurses/6.2-foss-2022b
   ncurses/6.2-GCCcore-9.3.0
   ncurses/6.2-GCCcore-10.2.0
   ncurses/6.2-GCCcore-10.3.0
   ncurses/6.2-GCCcore-11.2.0
   ncurses/6.2
   ncurses/6.3-GCCcore-11.3.0
   ncurses/6.3-GCCcore-12.2.0
   ncurses/6.3
   ncurses/6.4-GCCcore-12.3.0
   ncurses/6.4-GCCcore-13.2.0                                (L)
   ncurses/6.4
   ncurses/6.5-GCCcore-13.3.0
   ncurses/6.5-GCCcore-14.2.0
   ncurses/6.5                                               (D)
   nsync/1.25.0-GCCcore-11.3.0
   nsync/1.26.0-GCCcore-12.3.0                               (D)
   pkg-config/0.29.2-GCCcore-9.3.0
   pkg-config/0.29.2-GCCcore-10.2.0
   pkg-config/0.29.2-GCCcore-10.3.0
   pkg-config/0.29.2-GCCcore-11.2.0
   pkg-config/0.29.2-GCCcore-11.3.0
   pkg-config/0.29.2-GCCcore-12.2.0
   pkg-config/0.29.2                                         (D)
   pkgconf/1.8.0-GCCcore-10.2.0
   pkgconf/1.8.0-GCCcore-11.2.0
   pkgconf/1.8.0-GCCcore-11.3.0
   pkgconf/1.8.0
   pkgconf/1.9.3-GCCcore-12.2.0
   pkgconf/1.9.5-GCCcore-12.3.0
   pkgconf/2.0.3-GCCcore-13.2.0
   pkgconf/2.2.0-GCCcore-13.3.0
   pkgconf/2.2.0-GCCcore-14.2.0
   pkgconf/2.3.0-GCCcore-14.2.0                              (D)
   pkgconfig/1.5.4-GCCcore-10.3.0-python
   pkgconfig/1.5.5-GCCcore-11.3.0-python
   pkgconfig/1.5.5-GCCcore-12.2.0-Python-3.10.8
   pkgconfig/1.5.5-GCCcore-12.3.0-python                     (D)
   protobuf-python/3.19.4-GCCcore-11.3.0
   protobuf-python/4.23.0-GCCcore-12.2.0
   protobuf-python/4.24.0-GCCcore-12.3.0
   protobuf-python/4.25.3-GCCcore-13.2.0                     (D)
   protobuf/3.19.4-GCCcore-11.3.0
   protobuf/23.0-GCCcore-12.2.0
   protobuf/24.0-GCCcore-12.3.0
   protobuf/25.3-GCCcore-13.2.0                              (D)
   squashfs-tools/4.3
   squashfs-tools/4.6.1                                      (D)
   typing-extensions/4.9.0-GCCcore-12.3.0
   xorg-macros/1.19.2-GCCcore-9.3.0
   xorg-macros/1.19.2-GCCcore-10.2.0
   xorg-macros/1.19.3-GCCcore-10.3.0
   xorg-macros/1.19.3-GCCcore-11.2.0
   xorg-macros/1.19.3-GCCcore-11.3.0
   xorg-macros/1.19.3-GCCcore-12.2.0
   xorg-macros/1.20.0-GCCcore-12.3.0
   xorg-macros/1.20.0-GCCcore-13.2.0
   xorg-macros/1.20.1-GCCcore-13.3.0
   xorg-macros/1.20.1-GCCcore-14.2.0                         (D)
   xproto/7.0.31-GCCcore-12.3.0

------------------------------ /apps/modules/geo ------------------------------
   PROJ_4/4.9.2

----------------------------- /apps/modules/lang ------------------------------
   Anaconda3/2023.07-2
   Anaconda3/2024.02-1                          (D)
   Bison/3.0.5
   Bison/3.5.3-GCCcore-9.3.0
   Bison/3.7.1-GCCcore-10.2.0
   Bison/3.7.6-GCCcore-10.3.0
   Bison/3.7.6-GCCcore-11.2.0
   Bison/3.8.2-GCCcore-11.3.0
   Bison/3.8.2-GCCcore-12.2.0
   Bison/3.8.2-GCCcore-12.3.0
   Bison/3.8.2-GCCcore-13.2.0
   Bison/3.8.2-GCCcore-13.3.0
   Bison/3.8.2-GCCcore-14.2.0
   Bison/3.8.2                                  (D)
   FriBidi/1.0.10-GCCcore-10.3.0
   FriBidi/1.0.10-GCCcore-11.2.0
   FriBidi/1.0.12-GCCcore-11.3.0
   FriBidi/1.0.12-GCCcore-12.2.0
   FriBidi/1.0.12-GCCcore-12.3.0
   FriBidi/1.0.13-GCCcore-13.2.0
   FriBidi/1.0.15-GCCcore-13.3.0                (D)
   Java/1.8.0_221
   Java/11.0.20                                 (D:11)
   Julia/1.10.0-linux-x86_64                    (L)
   Lua/5.4.3-GCCcore-10.3.0
   Lua/5.4.3-GCCcore-11.2.0
   Lua/5.4.4-GCCcore-12.2.0
   Lua/5.4.6-GCCcore-12.3.0                     (D)
   NASM/2.15.05-GCCcore-10.2.0
   NASM/2.15.05-GCCcore-10.3.0
   NASM/2.15.05-GCCcore-11.2.0
   NASM/2.15.05-GCCcore-11.3.0
   NASM/2.15.05-GCCcore-12.2.0
   NASM/2.16.01-GCCcore-12.3.0
   NASM/2.16.01-GCCcore-13.2.0
   NASM/2.16.03-GCCcore-13.3.0
   NASM/2.16.03-GCCcore-14.2.0                  (D)
   Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0
   Perl-bundle-CPAN/5.38.0-GCCcore-13.2.0
   Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0
   Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0       (D)
   Perl/5.28.1-GCCcore-8.2.0
   Perl/5.30.2-GCCcore-9.3.0-minimal
   Perl/5.30.2-GCCcore-9.3.0
   Perl/5.32.0-GCCcore-10.2.0-minimal
   Perl/5.32.0-GCCcore-10.2.0
   Perl/5.32.1-GCCcore-10.3.0-minimal
   Perl/5.32.1-GCCcore-10.3.0
   Perl/5.34.0-GCCcore-11.2.0
   Perl/5.34.1-GCCcore-11.3.0-minimal
   Perl/5.34.1-GCCcore-11.3.0
   Perl/5.36.0-GCCcore-12.2.0-minimal
   Perl/5.36.0-GCCcore-12.2.0
   Perl/5.36.1-GCCcore-12.3.0
   Perl/5.38.0-GCCcore-13.2.0
   Perl/5.38.0
   Perl/5.38.2-GCCcore-13.3.0
   Perl/5.38.2-GCCcore-14.2.0
   Perl/5.40.0-GCCcore-14.2.0                   (D)
   Python-bundle-PyPI/2023.06-GCCcore-12.3.0
   Python-bundle-PyPI/2023.10-GCCcore-13.2.0    (L)
   Python-bundle-PyPI/2024.06-GCCcore-13.3.0    (D)
   Python/2.7.18-GCCcore-9.3.0
   Python/2.7.18-GCCcore-10.2.0
   Python/2.7.18-GCCcore-11.2.0-bare
   Python/2.7.18-GCCcore-11.3.0-bare
   Python/2.7.18-GCCcore-12.2.0-bare
   Python/3.8.2-GCCcore-9.3.0
   Python/3.8.6-GCCcore-10.2.0
   Python/3.9.5-GCCcore-10.3.0-bare
   Python/3.9.5-GCCcore-10.3.0
   Python/3.9.6-GCCcore-11.2.0-bare
   Python/3.9.6-GCCcore-11.2.0
   Python/3.10.4-GCCcore-11.3.0-bare
   Python/3.10.4-GCCcore-11.3.0
   Python/3.10.8-GCCcore-12.2.0-bare
   Python/3.10.8-GCCcore-12.2.0
   Python/3.11.2-GCCcore-12.2.0-bare
   Python/3.11.3-GCCcore-12.3.0
   Python/3.11.5-GCCcore-13.2.0-Qiskit
   Python/3.11.5-GCCcore-13.2.0-TB2J
   Python/3.11.5-GCCcore-13.2.0                 (L)
   Python/3.12.3-GCCcore-13.3.0
   Python/3.12.3-GCCcore-14.2.0-DeePMD-kit
   Python/3.12.3-GCCcore-14.2.0
   Python/3.13.1-GCCcore-12.2.0
   Python/3.13.1-GCCcore-14.2.0                 (D)
   Rust/1.52.1-GCCcore-10.3.0
   Rust/1.54.0-GCCcore-11.2.0
   Rust/1.60.0-GCCcore-11.3.0
   Rust/1.65.0-GCCcore-12.2.0
   Rust/1.70.0-GCCcore-12.3.0
   Rust/1.73.0-GCCcore-13.2.0
   Rust/1.78.0-GCCcore-13.3.0                   (D)
   SciPy-bundle/2020.03-foss-2020a-Python-3.8.2
   SciPy-bundle/2020.11-foss-2020b
   SciPy-bundle/2021.05-foss-2021a
   SciPy-bundle/2021.05-intel-2021a
   SciPy-bundle/2021.10-foss-2021b
   SciPy-bundle/2022.05-foss-2022a
   SciPy-bundle/2022.05-intel-2022a
   SciPy-bundle/2023.02-foss-2022b
   SciPy-bundle/2023.07-gfbf-2023a
   SciPy-bundle/2023.11-gfbf-2023b              (D)
   Tcl/8.6.9
   Tcl/8.6.10-GCCcore-9.3.0
   Tcl/8.6.10-GCCcore-10.2.0
   Tcl/8.6.11-GCCcore-10.3.0
   Tcl/8.6.11-GCCcore-11.2.0
   Tcl/8.6.12-GCCcore-11.3.0
   Tcl/8.6.12-GCCcore-12.2.0
   Tcl/8.6.13-GCCcore-12.3.0
   Tcl/8.6.13-GCCcore-13.2.0                    (L)
   Tcl/8.6.14-GCCcore-13.3.0
   Tcl/8.6.14-GCCcore-14.2.0
   Tcl/8.6.16-GCCcore-14.2.0                    (D)
   Tkinter/3.8.6-GCCcore-10.2.0
   Tkinter/3.9.6-GCCcore-11.2.0
   Tkinter/3.10.4-GCCcore-11.3.0
   Tkinter/3.11.3-GCCcore-12.3.0
   Tkinter/3.11.5-GCCcore-13.2.0                (D)
   Yasm/1.3.0-GCCcore-10.3.0
   Yasm/1.3.0-GCCcore-11.2.0
   Yasm/1.3.0-GCCcore-11.3.0
   Yasm/1.3.0-GCCcore-12.2.0
   Yasm/1.3.0-GCCcore-12.3.0
   Yasm/1.3.0-GCCcore-13.2.0
   Yasm/1.3.0-GCCcore-13.3.0                    (D)
   dotNET-Core-Runtime/6.0.1-GCCcore-11.2.0
   flex/2.6.4-GCCcore-9.3.0
   flex/2.6.4-GCCcore-10.2.0
   flex/2.6.4-GCCcore-10.3.0
   flex/2.6.4-GCCcore-11.2.0
   flex/2.6.4-GCCcore-11.3.0
   flex/2.6.4-GCCcore-12.2.0
   flex/2.6.4-GCCcore-12.3.0
   flex/2.6.4-GCCcore-13.2.0
   flex/2.6.4-GCCcore-13.3.0
   flex/2.6.4-GCCcore-14.2.0
   flex/2.6.4                                   (D)
   nodejs/18.12.1-GCCcore-12.2.0
   nodejs/18.17.1-GCCcore-12.3.0
   nodejs/20.9.0-GCCcore-13.2.0
   nodejs/20.13.1-GCCcore-13.3.0                (D)
   ruamel.yaml/0.17.32-GCCcore-12.3.0
   sqsgenerator/0.3-foss-2023b-Python-3.11.5    (D)

------------------------------ /apps/modules/lib ------------------------------
   Abseil/20230125.2-GCCcore-12.2.0
   Abseil/20230125.3-GCCcore-12.3.0
   Abseil/20240116.1-GCCcore-13.2.0            (D)
   Blosc/1.21.3-GCCcore-12.2.0
   Boost.Python-NumPy/1.83.0-gfbf-2023b
   Boost.Python/1.79.0-GCC-11.3.0
   Boost.Python/1.83.0-GCC-13.2.0              (D)
   Brotli/1.0.9-GCCcore-10.2.0
   Brotli/1.0.9-GCCcore-10.3.0
   Brotli/1.0.9-GCCcore-11.2.0
   Brotli/1.0.9-GCCcore-11.3.0
   Brotli/1.0.9-GCCcore-12.2.0
   Brotli/1.0.9-GCCcore-12.3.0
   Brotli/1.1.0-GCCcore-13.2.0
   Brotli/1.1.0-GCCcore-13.3.0
   Brotli/1.1.0-GCCcore-14.2.0                 (D)
   Catch2/2.13.9-GCCcore-12.2.0
   Catch2/2.13.9-GCCcore-12.3.0
   Catch2/2.13.9-GCCcore-13.2.0                (D)
   Check/0.15.2-GCCcore-10.2.0
   FLAC/1.3.3-GCCcore-11.2.0
   FUSE/3.2.6-GCCcore-12.3.0
   Flask/2.2.2-GCCcore-11.3.0
   Flask/3.0.0-GCCcore-13.2.0                  (D)
   FlexiBLAS/3.0.4-GCC-10.3.0
   FlexiBLAS/3.0.4-GCC-11.2.0
   FlexiBLAS/3.2.0-GCC-11.3.0
   FlexiBLAS/3.2.1-GCC-12.2.0
   FlexiBLAS/3.3.1-GCC-12.3.0
   FlexiBLAS/3.3.1-GCC-13.2.0
   FlexiBLAS/3.4.4-GCC-13.3.0                  (D)
   GDL/1.1.1-intel-2024a
   GDRCopy/2.1-GCCcore-10.2.0-CUDA-11.1.1
   GDRCopy/2.1-GCCcore-10.2.0-CUDA-11.6.0
   GDRCopy/2.3-GCCcore-10.2.0
   GDRCopy/2.3-GCCcore-11.3.0
   GDRCopy/2.3-GCCcore-12.2.0
   GDRCopy/2.3.1-GCCcore-12.3.0
   GDRCopy/2.4-GCCcore-13.2.0
   GDRCopy/2.4.1-GCCcore-12.2.0
   GDRCopy/2.4.4-GCCcore-14.2.0                (D)
   GLM/0.9.9.8-GCCcore-11.3.0
   GlobalArrays/5.8.2-intel-2022a
   Graphene/1.10.8-GCCcore-13.3.0
   ICU/67.1-GCCcore-10.2.0
   ICU/69.1-GCCcore-10.3.0
   ICU/69.1-GCCcore-11.2.0
   ICU/71.1-GCCcore-11.3.0
   ICU/72.1-GCCcore-12.2.0
   ICU/73.2-GCCcore-12.3.0
   ICU/74.1-GCCcore-13.2.0
   ICU/75.1-GCCcore-13.3.0                     (D)
   IOTK/1.2.2-intel-2020a
   JsonCpp/1.9.5-GCCcore-11.3.0
   JsonCpp/1.9.5-GCCcore-12.3.0                (D)
   LMDB/0.9.29-GCCcore-11.3.0
   LibTIFF/4.1.0-GCCcore-10.2.0
   LibTIFF/4.2.0-GCCcore-10.3.0
   LibTIFF/4.3.0-GCCcore-11.2.0
   LibTIFF/4.3.0-GCCcore-11.3.0
   LibTIFF/4.4.0-GCCcore-12.2.0
   LibTIFF/4.5.0-GCCcore-12.3.0
   LibTIFF/4.6.0-GCCcore-13.2.0
   LibTIFF/4.6.0-GCCcore-13.3.0
   LibTIFF/4.7.0-GCCcore-14.2.0                (D)
   MATIO/1.5.23-GCCcore-11.3.0
   NCCL/2.12.12-GCCcore-11.3.0-CUDA-11.7.0
   NCCL/2.18.3-CUDA-12.2.0
   NCCL/2.18.3-GCCcore-12.2.0-CUDA-12.2.0
   NCCL/2.18.3-GCCcore-12.3.0-CUDA-12.1.1
   NCCL/2.20.5-GCCcore-13.2.0-CUDA-12.4.0
   NCCL/2.21.5-GCCcore-12.2.0-CUDA-12.3.0
   NCCL/2.21.5-GCCcore-12.2.0-CUDA-12.4.0
   NCCL/2.21.5-GCCcore-14.2.0-CUDA-12.8.0      (D)
   NSPR/4.29-GCCcore-10.2.0
   NSPR/4.30-GCCcore-10.3.0
   NSPR/4.32-GCCcore-11.2.0
   NSPR/4.35-GCCcore-12.2.0
   NSPR/4.35-GCCcore-12.3.0
   NSPR/4.35-GCCcore-13.2.0
   NSPR/4.35-GCCcore-13.3.0                    (D)
   NSS/3.57-GCCcore-10.2.0
   NSS/3.65-GCCcore-10.3.0
   NSS/3.69-GCCcore-11.2.0
   NSS/3.85-GCCcore-12.2.0
   NSS/3.89.1-GCCcore-12.3.0
   NSS/3.94-GCCcore-13.2.0
   NSS/3.104-GCCcore-13.3.0                    (D)
   OpenJPEG/2.4.0-GCCcore-10.2.0
   OpenJPEG/2.5.0-GCCcore-12.2.0
   OpenJPEG/2.5.0-GCCcore-12.3.0
   OpenJPEG/2.5.0-GCCcore-13.2.0               (D)
   PMIx/3.1.5-GCCcore-9.3.0
   PMIx/3.1.5-GCCcore-10.2.0
   PMIx/4.1.0-GCCcore-11.2.0
   PMIx/4.1.2-GCCcore-11.3.0
   PMIx/4.2.2-GCCcore-12.2.0
   PMIx/4.2.4-GCCcore-12.3.0
   PMIx/4.2.6-GCCcore-13.2.0                   (L)
   PMIx/5.0.2-GCCcore-12.2.0
   PMIx/5.0.2-GCCcore-13.3.0
   PMIx/5.0.2-GCCcore-14.2.0
   PMIx/5.0.6-GCCcore-14.2.0                   (D)
   PNGwriter/0.7.0-GCC-10.2.0
   PROJ/9.3.1-GCCcore-13.2.0
   PROJ/9.4.1-GCCcore-13.3.0                   (D)
   PRRTE/3.0.5-GCCcore-12.2.0
   PRRTE/3.0.5-GCCcore-13.3.0
   PRRTE/3.0.5-GCCcore-14.2.0
   PRRTE/3.0.8-GCCcore-14.2.0                  (D)
   PyYAML/5.3.1-GCCcore-10.2.0
   PyYAML/5.4.1.1-GCCcore-12.2.0
   PyYAML/6.0-GCCcore-11.3.0
   PyYAML/6.0-GCCcore-12.3.0
   PyYAML/6.0.1-GCCcore-13.2.0                 (L,D)
   Qwt/6.3.0-GCCcore-12.3.0
   RapidJSON/1.1.0-GCCcore-12.2.0
   SDL2/2.0.14-GCCcore-10.3.0
   SDL2/2.26.3-GCCcore-12.2.0
   SDL2/2.28.2-GCCcore-12.3.0
   SDL2/2.28.5-GCCcore-13.2.0
   SDL2/2.30.6-GCCcore-13.3.0                  (D)
   SIONlib/1.7.7-GCCcore-12.2.0-tools
   SIONlib/1.7.7-GCCcore-13.2.0-tools
   SIONlib/1.7.7-GCCcore-13.3.0-tools          (D)
   SQLAlchemy/2.0.25-GCCcore-12.3.0
   TenPy/1.0.3-gfbf-2023b
   TensorFlow/2.9.1-foss-2022a-CUDA-11.7.0
   TensorFlow/2.11.0-foss-2022a-CUDA-11.7.0
   TensorFlow/2.15.1-foss-2023a-CUDA-12.1.1    (D)
   UCC-CUDA/1.0.0-GCCcore-11.3.0-CUDA-11.7.0
   UCC-CUDA/1.1.0-GCCcore-12.2.0-CUDA-12.2.0
   UCC-CUDA/1.3.0-GCCcore-12.2.0-CUDA-12.3.0
   UCC-CUDA/1.3.0-GCCcore-12.2.0-CUDA-12.4.0   (D)
   UCC/1.0.0-GCCcore-11.3.0
   UCC/1.1.0-GCCcore-10.2.0
   UCC/1.1.0-GCCcore-12.2.0
   UCC/1.2.0-GCCcore-12.3.0
   UCC/1.2.0-GCCcore-13.2.0                    (L)
   UCC/1.3.0-GCCcore-12.2.0
   UCC/1.3.0-GCCcore-13.3.0
   UCC/1.3.0-GCCcore-14.2.0                    (D)
   UCX-CUDA/1.12.1-GCCcore-10.2.0-CUDA-11.7.0
   UCX-CUDA/1.12.1-GCCcore-11.3.0-CUDA-11.7.0
   UCX-CUDA/1.12.1-GCCcore-11.3.0-CUDA-12.0.0
   UCX-CUDA/1.14.1-GCCcore-12.2.0-CUDA-12.2.0
   UCX-CUDA/1.14.1-GCCcore-12.3.0-CUDA-12.1.1
   UCX-CUDA/1.15.0-GCCcore-13.2.0-CUDA-12.4.0
   UCX-CUDA/1.16.0-GCCcore-12.2.0-CUDA-12.3.0
   UCX-CUDA/1.16.0-GCCcore-12.2.0-CUDA-12.4.0
   UCX-CUDA/1.18.0-GCCcore-14.2.0-CUDA-12.8.0  (D)
   UCX/1.8.0-GCCcore-9.3.0
   UCX/1.9.0-GCCcore-8.2.0
   UCX/1.9.0-GCCcore-10.2.0-CUDA-11.1.1
   UCX/1.9.0-GCCcore-10.2.0
   UCX/1.10.0-GCCcore-10.3.0
   UCX/1.11.2-GCCcore-11.2.0
   UCX/1.12.0-GCC-10.2.0-CUDA-11.6.0
   UCX/1.12.1-GCCcore-10.2.0
   UCX/1.12.1-GCCcore-11.3.0
   UCX/1.13.1-GCCcore-12.2.0
   UCX/1.14.1-GCCcore-11.3.0
   UCX/1.14.1-GCCcore-12.2.0
   UCX/1.14.1-GCCcore-12.3.0
   UCX/1.15.0-GCCcore-13.2.0                   (L)
   UCX/1.16.0-GCCcore-12.2.0
   UCX/1.16.0-GCCcore-13.3.0
   UCX/1.16.0-GCCcore-14.2.0
   UCX/1.18.0-GCCcore-14.2.0                   (D)
   XALT/3.0.1
   XALT/3.0.2                                  (S,L,D)
   XALT/3.1.4
   aiohttp/3.8.5-GCCcore-12.3.0
   cuTENSOR/2.0.0.7-CUDA-12.2.0-conda
   dlb/3.5.0-gompi-2023b
   dlb/3.5.0-iimpi-2023b                       (D)
   double-conversion/3.1.5-GCCcore-10.2.0
   double-conversion/3.1.5-GCCcore-10.3.0
   double-conversion/3.1.5-GCCcore-11.2.0
   double-conversion/3.2.0-GCCcore-11.3.0
   double-conversion/3.2.1-GCCcore-12.2.0
   double-conversion/3.3.0-GCCcore-12.3.0
   double-conversion/3.3.0-GCCcore-13.2.0
   double-conversion/3.3.0-GCCcore-13.3.0      (D)
   elfutils/0.183-GCCcore-10.2.0
   elfutils/0.187-GCCcore-11.3.0
   elfutils/0.189-GCCcore-12.2.0
   elfutils/0.191-GCCcore-13.3.0               (D)
   ffnvcodec/11.1.5.2
   ffnvcodec/12.0.16.0
   ffnvcodec/12.1.14.0
   ffnvcodec/12.2.72.0                         (D)
   freeglut/3.2.1-GCCcore-11.2.0
   fypp/3.2-foss-2023a
   giflib/5.2.1-GCCcore-11.3.0
   giflib/5.2.1-GCCcore-12.2.0
   giflib/5.2.1-GCCcore-12.3.0
   giflib/5.2.1-GCCcore-13.2.0
   giflib/5.2.1-GCCcore-13.3.0                 (D)
   graphite2/1.3.14-GCCcore-10.2.0
   graphite2/1.3.14-GCCcore-11.2.0
   graphite2/1.3.14-GCCcore-12.2.0
   graphite2/1.3.14-GCCcore-12.3.0
   graphite2/1.3.14-GCCcore-13.2.0
   graphite2/1.3.14-GCCcore-13.3.0             (D)
   json-fortran/9.0.2-GCC-12.3.0
   libaec/1.0.6-GCCcore-13.2.0
   libdrm/2.4.102-GCCcore-10.2.0
   libdrm/2.4.106-GCCcore-10.3.0
   libdrm/2.4.107-GCCcore-11.2.0
   libdrm/2.4.110-GCCcore-11.3.0
   libdrm/2.4.114-GCCcore-12.2.0
   libdrm/2.4.115-GCCcore-12.3.0
   libdrm/2.4.117-GCCcore-13.2.0
   libdrm/2.4.122-GCCcore-13.3.0               (D)
   libepoxy/1.5.8-GCCcore-10.3.0
   libepoxy/1.5.10-GCCcore-12.2.0
   libepoxy/1.5.10-GCCcore-13.3.0              (D)
   libevent/2.1.11-GCCcore-9.3.0
   libevent/2.1.12-GCCcore-10.2.0
   libevent/2.1.12-GCCcore-10.3.0
   libevent/2.1.12-GCCcore-11.2.0
   libevent/2.1.12-GCCcore-11.3.0
   libevent/2.1.12-GCCcore-12.2.0
   libevent/2.1.12-GCCcore-12.3.0
   libevent/2.1.12-GCCcore-13.2.0              (L)
   libevent/2.1.12-GCCcore-13.3.0
   libevent/2.1.12-GCCcore-14.2.0              (D)
   libfabric/1.11.0-GCCcore-9.3.0
   libfabric/1.11.0-GCCcore-10.2.0
   libfabric/1.13.2-GCCcore-11.2.0
   libfabric/1.15.1-GCCcore-11.3.0
   libfabric/1.16.1-GCCcore-12.2.0
   libfabric/1.16.1-GCCcore-14.2.0
   libfabric/1.18.0-GCCcore-12.3.0
   libfabric/1.19.0-GCCcore-13.2.0             (L)
   libfabric/1.21.0-GCCcore-13.3.0
   libfabric/2.0.0-GCCcore-14.2.0              (D)
   libffi/3.2.1
   libffi/3.3-GCCcore-9.3.0
   libffi/3.3-GCCcore-10.2.0
   libffi/3.3-GCCcore-10.3.0
   libffi/3.4.2-GCCcore-11.2.0
   libffi/3.4.2-GCCcore-11.3.0
   libffi/3.4.4-GCCcore-12.2.0
   libffi/3.4.4-GCCcore-12.3.0
   libffi/3.4.4-GCCcore-13.2.0                 (L)
   libffi/3.4.5-GCCcore-13.3.0
   libffi/3.4.5-GCCcore-14.2.0                 (D)
   libgd/2.3.1-GCCcore-10.3.0
   libgd/2.3.3-GCCcore-11.2.0
   libgd/2.3.3-GCCcore-12.2.0
   libgd/2.3.3-GCCcore-12.3.0                  (D)
   libgeotiff/1.7.3-GCCcore-13.3.0
   libglvnd/1.3.2-GCCcore-10.2.0
   libglvnd/1.3.3-GCCcore-10.3.0
   libglvnd/1.3.3-GCCcore-11.2.0
   libglvnd/1.4.0-GCCcore-11.3.0
   libglvnd/1.6.0-GCCcore-12.2.0
   libglvnd/1.6.0-GCCcore-12.3.0
   libglvnd/1.7.0-GCCcore-13.2.0
   libglvnd/1.7.0-GCCcore-13.3.0               (D)
   libiconv/1.16-GCCcore-9.3.0
   libiconv/1.16-GCCcore-10.2.0
   libiconv/1.16-GCCcore-10.3.0
   libiconv/1.16-GCCcore-11.2.0
   libiconv/1.17-GCCcore-11.3.0
   libiconv/1.17-GCCcore-12.2.0
   libiconv/1.17-GCCcore-12.3.0
   libiconv/1.17-GCCcore-13.2.0
   libiconv/1.17-GCCcore-13.3.0
   libiconv/1.17-GCCcore-14.2.0
   libiconv/1.18-GCCcore-14.2.0                (D)
   libidn2/2.3.7-GCCcore-14.2.0
   libjpeg-turbo/2.0.5-GCCcore-10.2.0
   libjpeg-turbo/2.0.6-GCCcore-10.3.0
   libjpeg-turbo/2.0.6-GCCcore-11.2.0
   libjpeg-turbo/2.1.3-GCCcore-11.3.0
   libjpeg-turbo/2.1.4-GCCcore-12.2.0
   libjpeg-turbo/2.1.5.1-GCCcore-12.3.0
   libjpeg-turbo/3.0.1-GCCcore-13.2.0
   libjpeg-turbo/3.0.1-GCCcore-13.3.0
   libjpeg-turbo/3.0.1-GCCcore-14.2.0          (D)
   libogg/1.3.5-GCCcore-11.2.0
   libpng/1.5.30
   libpng/1.6.37-GCCcore-10.2.0
   libpng/1.6.37-GCCcore-10.3.0
   libpng/1.6.37-GCCcore-11.2.0
   libpng/1.6.37-GCCcore-11.3.0
   libpng/1.6.38-GCCcore-12.2.0
   libpng/1.6.39-GCCcore-12.3.0
   libpng/1.6.40-GCCcore-13.2.0
   libpng/1.6.43-GCCcore-13.3.0
   libpng/1.6.45-GCCcore-14.2.0                (D)
   libpsl/0.21.5-GCCcore-14.2.0
   libreadline/8.0-GCCcore-9.3.0
   libreadline/8.0-GCCcore-10.2.0
   libreadline/8.0
   libreadline/8.1-GCCcore-10.3.0
   libreadline/8.1-GCCcore-11.2.0
   libreadline/8.1.2-GCCcore-11.3.0
   libreadline/8.2-GCCcore-12.2.0
   libreadline/8.2-GCCcore-12.3.0
   libreadline/8.2-GCCcore-13.2.0              (L)
   libreadline/8.2-GCCcore-13.3.0
   libreadline/8.2-GCCcore-14.2.0              (D)
   libsndfile/1.0.31-GCCcore-11.2.0
   libsodium/1.0.19-GCCcore-13.2.0             (L)
   libtirpc/1.3.5-GCCcore-13.3.0
   libtool/2.4.6-GCCcore-8.2.0
   libtool/2.4.6-GCCcore-9.3.0
   libtool/2.4.6-GCCcore-10.2.0
   libtool/2.4.6-GCCcore-10.3.0
   libtool/2.4.6-GCCcore-11.2.0
   libtool/2.4.6
   libtool/2.4.7-GCCcore-11.3.0
   libtool/2.4.7-GCCcore-12.2.0
   libtool/2.4.7-GCCcore-12.3.0
   libtool/2.4.7-GCCcore-13.2.0
   libtool/2.4.7-GCCcore-13.3.0
   libtool/2.4.7-GCCcore-14.2.0
   libtool/2.4.7
   libtool/2.5.4-GCCcore-14.2.0                (D)
   libunistring/1.3-GCCcore-14.2.0
   libunwind/1.4.0-GCCcore-10.2.0
   libunwind/1.4.0-GCCcore-10.3.0
   libunwind/1.5.0-GCCcore-11.2.0
   libunwind/1.6.2-GCCcore-11.3.0
   libunwind/1.6.2-GCCcore-12.2.0
   libunwind/1.6.2-GCCcore-12.3.0
   libunwind/1.6.2-GCCcore-13.2.0
   libunwind/1.8.1-GCCcore-13.3.0              (D)
   libvorbis/1.3.7-GCCcore-11.2.0
   libvori/220621-GCCcore-11.3.0
   libvori/220621-GCCcore-12.3.0               (D)
   libwebp/1.3.1-GCCcore-12.2.0
   libwebp/1.3.1-GCCcore-12.3.0
   libwebp/1.3.2-GCCcore-13.2.0
   libwebp/1.4.0-GCCcore-13.3.0                (D)
   libxml2/2.9.9
   libxml2/2.9.10-GCCcore-9.3.0
   libxml2/2.9.10-GCCcore-10.2.0
   libxml2/2.9.10-GCCcore-10.3.0
   libxml2/2.9.10-GCCcore-11.2.0
   libxml2/2.9.13-GCCcore-11.3.0
   libxml2/2.10.3-GCCcore-12.2.0
   libxml2/2.11.4-GCCcore-12.3.0
   libxml2/2.11.5-GCCcore-13.2.0               (L)
   libxml2/2.12.7-GCCcore-13.3.0
   libxml2/2.12.7-GCCcore-14.2.0
   libxml2/2.13.4-GCCcore-14.2.0               (D)
   libxslt/1.1.33
   libxslt/1.1.34-GCCcore-10.3.0
   libxslt/1.1.38-GCCcore-12.3.0
   libxslt/1.1.38-GCCcore-13.2.0               (L,D)
   libyaml/0.2.5-GCCcore-10.2.0
   libyaml/0.2.5-GCCcore-11.3.0
   libyaml/0.2.5-GCCcore-12.2.0
   libyaml/0.2.5-GCCcore-12.3.0
   libyaml/0.2.5-GCCcore-13.2.0                (L,D)
   lxml/4.6.3-GCCcore-10.3.0
   lxml/4.9.3-GCCcore-13.2.0                   (L,D)
   lz4/1.9.2-GCCcore-10.2.0
   lz4/1.9.3-GCCcore-10.3.0
   lz4/1.9.3-GCCcore-11.2.0
   lz4/1.9.3-GCCcore-11.3.0
   lz4/1.9.4-GCCcore-12.2.0
   lz4/1.9.4-GCCcore-12.3.0
   lz4/1.9.4-GCCcore-13.2.0
   lz4/1.9.4-GCCcore-13.3.0
   lz4/1.9.4-GCCcore-14.2.0                    (D)
   mpi4py/3.1.4-gompi-2022b
   mpi4py/3.1.4-gompi-2023a
   mpi4py/3.1.5-gompi-2023b                    (D)
   nettle/3.9.1-GCCcore-12.3.0
   nlohmann_json/3.11.3-GCCcore-13.2.0
   nlohmann_json/3.11.3-GCCcore-13.3.0         (D)
   pocl/4.0-GCC-12.3.0
   poppler/21.06.1-GCC-10.2.0
   psycopg2/2.9.9-GCCcore-12.3.0
   pybind11/2.4.3-GCCcore-9.3.0-Python-3.8.2
   pybind11/2.6.0-GCCcore-10.2.0
   pybind11/2.6.2-GCCcore-10.3.0
   pybind11/2.7.1-GCCcore-11.2.0
   pybind11/2.9.2-GCCcore-11.3.0
   pybind11/2.10.3-GCCcore-12.2.0
   pybind11/2.11.1-GCCcore-12.3.0
   pybind11/2.11.1-GCCcore-13.2.0              (D)
   pytest/7.4.2-GCCcore-12.3.0
   scikit-build-core/0.5.0-GCCcore-13.2.0
   scikit-build-core/0.9.3-GCCcore-12.3.0      (D)
   scikit-build/0.10.0-foss-2020a-Python-3.8.2
   scikit-build/0.11.1-fosscuda-2020b
   scikit-build/0.15.0-GCCcore-11.3.0
   scikit-build/0.17.6-GCCcore-12.3.0
   scikit-build/0.17.6-GCCcore-13.2.0
   scikit-build/0.17.6-GCCcore-13.3.0          (D)
   snappy/1.1.8-GCCcore-10.2.0
   snappy/1.1.8-GCCcore-10.3.0
   snappy/1.1.9-GCCcore-11.2.0
   snappy/1.1.9-GCCcore-11.3.0
   snappy/1.1.9-GCCcore-12.2.0
   snappy/1.1.10-GCCcore-12.3.0
   snappy/1.1.10-GCCcore-13.2.0
   snappy/1.2.1-GCCcore-13.3.0                 (D)
   tbb/2020.3-GCCcore-11.2.0
   tbb/2021.5.0-GCCcore-11.3.0
   tbb/2021.10.0-GCCcore-12.2.0
   tbb/2021.11.0-GCCcore-12.3.0                (D)
   tblite/0.3.0-foss-2023a
   tblite/0.3.0-intel-2022a                    (D)
   tensorboard/2.10.0-foss-2022a
   tensorboard/2.15.1-gfbf-2023a               (D)
   tornado/6.4-GCCcore-13.2.0                  (L)
   uncertainties/3.1.7-foss-2023b
   zlib/1.2.11-GCCcore-8.2.0
   zlib/1.2.11-GCCcore-9.3.0
   zlib/1.2.11-GCCcore-10.2.0
   zlib/1.2.11-GCCcore-10.3.0
   zlib/1.2.11-GCCcore-11.2.0
   zlib/1.2.11
   zlib/1.2.12-GCCcore-11.3.0
   zlib/1.2.12-GCCcore-12.2.0
   zlib/1.2.12
   zlib/1.2.13-GCCcore-12.3.0
   zlib/1.2.13-GCCcore-13.2.0                  (L)
   zlib/1.2.13
   zlib/1.3.1-GCCcore-13.3.0
   zlib/1.3.1-GCCcore-14.2.0
   zlib/1.3.1                                  (D)
   zstd/1.4.5-GCCcore-10.2.0
   zstd/1.4.9-GCCcore-10.3.0
   zstd/1.5.0-GCCcore-11.2.0
   zstd/1.5.2-GCCcore-11.3.0
   zstd/1.5.2-GCCcore-12.2.0
   zstd/1.5.5-GCCcore-12.3.0
   zstd/1.5.5-GCCcore-13.2.0
   zstd/1.5.6-GCCcore-13.3.0
   zstd/1.5.6-GCCcore-14.2.0                   (D)

----------------------------- /apps/modules/math ------------------------------
   Dakota/6.15.0-foss-2021b
   Dakota/6.15.0-intel-2021b                                            (D)
   ELPA/2019.11.001-intel-2020a
   ELPA/2021.05.001-intel-2021a
   ELPA/2022.05.001-foss-2022b
   ELPA/2023.05.001-foss-2023a-CUDA-12.1.1
   ELPA/2023.05.001-foss-2023a
   ELPA/2023.11.001-foss-2023b
   ELPA/2023.11.001-intel-2023b                                         (D)
   ELSI/2.11.0-foss-2023a-PEXSI-ELPA-2023.05.001-foss-2023a-CUDA-12.1.1
   ELSI/2.11.0-foss-2023a-PEXSI                                         (D)
   Eigen/3.3.7-GCCcore-9.3.0
   Eigen/3.3.8-GCCcore-10.2.0
   Eigen/3.3.9-GCCcore-10.3.0
   Eigen/3.3.9-GCCcore-11.2.0
   Eigen/3.4.0-GCCcore-11.2.0
   Eigen/3.4.0-GCCcore-11.3.0
   Eigen/3.4.0-GCCcore-12.2.0
   Eigen/3.4.0-GCCcore-12.3.0
   Eigen/3.4.0-GCCcore-13.2.0
   Eigen/3.4.0-GCCcore-13.3.0                                           (D)
   GMP/6.1.2
   GMP/6.2.0-GCCcore-9.3.0
   GMP/6.2.0-GCCcore-10.2.0
   GMP/6.2.1-GCCcore-10.3.0
   GMP/6.2.1-GCCcore-11.2.0
   GMP/6.2.1-GCCcore-11.3.0
   GMP/6.2.1-GCCcore-12.2.0
   GMP/6.2.1-GCCcore-12.3.0
   GMP/6.3.0-GCCcore-13.2.0
   GMP/6.3.0-GCCcore-13.3.0                                             (D)
   KaHIP/3.14-iimpi-2022b
   KaHIP/3.16-gompi-2023a                                               (D)
   MATLAB/R2015b
   MATLAB/R2021a
   MATLAB/R2023b-iso
   MATLAB/R2023b                                                        (D)
   METIS/5.1.0-GCCcore-10.3.0
   METIS/5.1.0-GCCcore-11.2.0
   METIS/5.1.0-GCCcore-11.3.0
   METIS/5.1.0-GCCcore-12.2.0
   METIS/5.1.0-GCCcore-12.3.0
   METIS/5.1.0-GCCcore-13.2.0
   METIS/5.1.0-GCCcore-13.3.0
   METIS/5.1.0-intel-2020a                                              (D)
   MPC/1.2.1-GCCcore-10.2.0
   MPC/1.3.1-GCCcore-12.3.0
   MPC/1.3.1-GCCcore-13.2.0                                             (D)
   MPFR/4.1.0-GCCcore-10.2.0
   MPFR/4.1.0-GCCcore-10.3.0
   MPFR/4.1.0-GCCcore-11.2.0
   MPFR/4.1.0-GCCcore-11.3.0
   MPFR/4.2.0-GCCcore-12.2.0
   MPFR/4.2.0-GCCcore-12.3.0
   MPFR/4.2.1-GCCcore-13.2.0                                            (D)
   MUMPS/5.2.1-intel-2020a-metis
   MUMPS/5.6.1-foss-2022b-metis                                         (D)
   NTPoly/3.1.0-foss-2023a
   Octave/7.1.0-foss-2021b
   ParMETIS/4.0.3-gompi-2022b
   QD/2.3.17-NVHPC-24.1-CUDA-12.4.0
   QD/2.3.17-NVHPC-24.3-CUDA-12.3.0                                     (D)
   Qhull/2020.2-GCCcore-11.2.0
   Qhull/2020.2-GCCcore-11.3.0
   Qhull/2020.2-GCCcore-12.3.0
   Qhull/2020.2-GCCcore-13.2.0                                          (D)
   SCOTCH/6.0.9-intel-2020a
   SCOTCH/6.1.0-iimpi-2021a
   SCOTCH/7.0.1-gompi-2022a
   SCOTCH/7.0.3-gompi-2022b
   SCOTCH/7.0.3-gompi-2023a
   SCOTCH/7.0.3-iimpi-2022b                                             (D)
   SUNDIALS/6.3.0-foss-2021b
   ScaFaCoS/1.0.1-foss-2021b
   ScaFaCoS/1.0.4-foss-2022a
   ScaFaCoS/1.0.4-foss-2023a                                            (D)
   ScalapackFx/1.2-foss-2023a
   Voro++/0.4.6-GCCcore-11.2.0
   Voro++/0.4.6-GCCcore-11.3.0
   Voro++/0.4.6-GCCcore-12.3.0                                          (D)
   gmpy2/2.1.0b5-GCC-10.2.0
   gmpy2/2.1.5-GCC-12.3.0
   gmpy2/2.1.5-GCC-13.2.0                                               (D)
   libcerf/1.17-GCCcore-10.3.0
   libcerf/1.17-GCCcore-11.2.0
   libcerf/2.3-GCCcore-12.2.0
   libcerf/2.3-GCCcore-12.3.0                                           (D)
   libxsmm/1.17-GCC-11.3.0
   libxsmm/1.17-GCC-12.3.0                                              (D)
   magma/2.7.2-foss-2023a-CUDA-12.1.1
   magma/2.7.2-foss-2023b-CUDA-12.4.0                                   (D)
   matlab-proxy/0.18.1-GCCcore-12.3.0
   sympy/1.7.1-foss-2020b
   sympy/1.12-gfbf-2023a
   sympy/1.12-gfbf-2023b                                                (D)

------------------------------ /apps/modules/mpi ------------------------------
   MPICH/3.3.2-GCC-10.2.0
   MVAPICH2/2.2-GCC-9.3.0
   OpenMPI/4.0.3-GCC-9.3.0
   OpenMPI/4.0.5-GCC-10.2.0
   OpenMPI/4.0.5-gcccuda-2020b
   OpenMPI/4.1.1-GCC-10.2.0
   OpenMPI/4.1.1-GCC-10.3.0
   OpenMPI/4.1.1-GCC-11.2.0
   OpenMPI/4.1.1-intel-compilers-2021.4.0
   OpenMPI/4.1.2-NVHPC-22.2-CUDA-11.6.0
   OpenMPI/4.1.4-GCC-10.2.0-CUDA-11.7.0
   OpenMPI/4.1.4-GCC-11.3.0
   OpenMPI/4.1.4-GCC-12.2.0
   OpenMPI/4.1.4-NVHPC-22.7-CUDA-11.7.0
   OpenMPI/4.1.5-GCC-12.3.0
   OpenMPI/4.1.6-GCC-12.2.0-CUDA-12.4.0
   OpenMPI/4.1.6-GCC-13.2.0                             (L)
   OpenMPI/4.1.6-NVHPC-23.5-CUDA-12.2.0
   OpenMPI/4.1.6-NVHPC-23.11-CUDA-12.2.0
   OpenMPI/4.1.6-NVHPC-24.1-CUDA-12.4.0
   OpenMPI/4.1.6-NVHPC-24.3-CUDA-12.3.0
   OpenMPI/5.0.3-GCC-13.3.0
   OpenMPI/5.0.5-GCC-14.2.0
   OpenMPI/5.0.5-NVHPC-24.3-CUDA-12.3.0                 (D)
   impi/2018.4.274-iccifort-2019.1.144-GCC-8.2.0-2.31.1
   impi/2019.7.217-iccifort-2020.1.217
   impi/2019.9.304-iccifort-2020.4.304
   impi/2021.2.0-intel-compilers-2021.2.0
   impi/2021.4.0-intel-compilers-2021.4.0
   impi/2021.4.0-intel-compilers-2022.1.0
   impi/2021.4.0-intel-compilers-2022.2.1
   impi/2021.4.0-intel-compilers-2023.1.0
   impi/2021.7.1-intel-compilers-2022.2.1
   impi/2021.8.0-intel-compilers-2023.0.0
   impi/2021.10.0-intel-compilers-2023.2.1
   impi/2021.13.0-intel-compilers-2024.2.0              (D)

---------------------------- /apps/modules/numlib -----------------------------
   AOCL/4.2.0-GCCcore-12.2.0
   AOCL/5.0.0-GCCcore-14.2.0                 (D)
   BLIS/0.8.1-GCC-10.3.0
   BLIS/0.8.1-GCC-11.2.0
   BLIS/0.9.0-GCC-11.3.0
   BLIS/0.9.0-GCC-12.2.0
   BLIS/0.9.0-GCC-12.3.0
   BLIS/0.9.0-GCC-13.2.0
   BLIS/1.0-GCC-13.3.0
   BLIS/3.1-GCCcore-12.2.0-amd               (D)
   CGAL/4.14.3-iimpi-2021a
   CGAL/5.6-GCCcore-12.3.0                   (D)
   FFTW.MPI/3.3.10-gompi-2022a
   FFTW.MPI/3.3.10-gompi-2022b
   FFTW.MPI/3.3.10-gompi-2023a
   FFTW.MPI/3.3.10-gompi-2023b
   FFTW.MPI/3.3.10-gompi-2024a
   FFTW.MPI/3.3.10-NVHPC-24.1-CUDA-12.4.0
   FFTW.MPI/3.3.10-NVHPC-24.3-CUDA-12.3.0    (D)
   FFTW/3.3.8-gompi-2020a
   FFTW/3.3.8-gompi-2020b
   FFTW/3.3.8-gompic-2020b
   FFTW/3.3.8-intel-2020b
   FFTW/3.3.8
   FFTW/3.3.9-gompi-2021a
   FFTW/3.3.10-GCC-11.3.0
   FFTW/3.3.10-GCC-12.2.0
   FFTW/3.3.10-GCC-12.3.0
   FFTW/3.3.10-GCC-13.2.0
   FFTW/3.3.10-GCC-13.3.0
   FFTW/3.3.10-gompi-2021b
   FFTW/3.3.10-NVHPC-24.1-CUDA-12.4.0
   FFTW/3.3.10-NVHPC-24.3-CUDA-12.3.0        (D)
   GSL/2.6-GCC-10.2.0
   GSL/2.6-iccifort-2020.4.304
   GSL/2.7-GCC-10.3.0
   GSL/2.7-GCC-11.2.0
   GSL/2.7-GCC-11.3.0
   GSL/2.7-GCC-12.3.0
   GSL/2.7-intel-compilers-2021.4.0
   GSL/2.7-intel-compilers-2022.1.0
   GSL/2.7-intel-compilers-2023.2.1
   GSL/2.8-GCC-13.3.0                        (D)
   Hypre/2.18.2-intel-2020a
   Hypre/2.27.0-foss-2022b                   (D)
   LAPACK/3.10.0-GCC-12.2.0
   OpenBLAS/0.3.9-GCC-9.3.0
   OpenBLAS/0.3.12-GCC-10.2.0
   OpenBLAS/0.3.15-GCC-10.3.0
   OpenBLAS/0.3.18-GCC-11.2.0
   OpenBLAS/0.3.20-GCC-11.3.0
   OpenBLAS/0.3.21-GCC-12.2.0
   OpenBLAS/0.3.23-GCC-12.3.0
   OpenBLAS/0.3.24-GCC-13.2.0
   OpenBLAS/0.3.27-GCC-13.3.0                (D)
   PETSc/3.12.4-intel-2020a
   PETSc/3.19.2-foss-2022b
   PETSc/3.21.2-foss-2022b                   (D)
   SLEPc/3.12.2-intel-2020a
   SLEPc/3.21.1-foss-2022b                   (D)
   ScaLAPACK/2.1.0-gompi-2020a
   ScaLAPACK/2.1.0-gompi-2020b
   ScaLAPACK/2.1.0-gompi-2021a-fb
   ScaLAPACK/2.1.0-gompi-2021b-fb
   ScaLAPACK/2.1.0-gompic-2020b
   ScaLAPACK/2.2.0-gompi-2022a-fb
   ScaLAPACK/2.2.0-gompi-2022b-fb
   ScaLAPACK/2.2.0-gompi-2023a-fb
   ScaLAPACK/2.2.0-gompi-2023b-fb
   ScaLAPACK/2.2.0-gompi-2024a-fb
   ScaLAPACK/3.0-NVHPC-24.1-CUDA-12.4.0
   ScaLAPACK/3.0-NVHPC-24.3-CUDA-12.3.0      (D)
   SuiteSparse/5.6.0-intel-2020a-METIS-5.1.0
   SuiteSparse/5.10.1-foss-2021b-METIS-5.1.0
   SuiteSparse/5.13.0-foss-2022a-METIS-5.1.0
   SuiteSparse/5.13.0-foss-2022b-METIS-5.1.0 (D)
   SuperLU_DIST/8.1.2-foss-2022b
   Trilinos/13.4.1-foss-2022a
   arpack-ng/3.8.0-foss-2021b
   arpack-ng/3.8.0-intel-2022a               (D)
   cuDNN/8.4.1.50-CUDA-11.7.0
   cuDNN/8.9.2.26-CUDA-12.1.1
   cuDNN/8.9.2.26-CUDA-12.2.0
   cuDNN/8.9.7.29-CUDA-12.3.0
   cuDNN/8.9.7.29-CUDA-12.4.0
   cuDNN/9.1.0.70-CUDA-12.4.0
   cuDNN/9.5.0.50-CUDA-12.6.0
   cuDNN/9.7.1.26-CUDA-12.8.0                (D)
   imkl-FFTW/2021.4.0-iimpi-2021b
   imkl-FFTW/2022.1.0-iimpi-2022a
   imkl-FFTW/2022.2.1-iimpi-2022b
   imkl-FFTW/2023.0.0-iimpi-2022.12
   imkl-FFTW/2023.1.0-iimpi-2023a
   imkl-FFTW/2023.2.0-iimpi-2023b
   imkl-FFTW/2024.2.0-iimpi-2024a            (D)
   imkl/2019.1.144-iimpi-2019a
   imkl/2020.1.217-iimpi-2020a
   imkl/2020.4.304-iimpi-2020b
   imkl/2021.2.0-iimpi-2021a
   imkl/2021.4.0
   imkl/2022.1.0
   imkl/2022.2.1
   imkl/2023.0.0
   imkl/2023.1.0
   imkl/2023.2.0
   imkl/2024.2.0                             (D)
   libFLAME/5.2.0-GCCcore-12.2.0
   qrupdate/1.1.2-GCCcore-11.2.0

----------------------------- /apps/modules/perf ------------------------------
   AMD-uProf/4.0.341
   AMD-uProf/4.2.850                                (D)
   Advisor/2023.2.0
   CuSan/0.1-beta-nvompi-2022.07
   Cube/4.8.2-GCCcore-13.2.0
   CubeGUI/4.8.2-GCCcore-12.2.0
   CubeGUI/4.8.2-GCCcore-13.2.0                     (D)
   CubeLib/4.8.2-GCCcore-12.2.0
   CubeLib/4.8.2-GCCcore-13.2.0
   CubeLib/4.8.2-GCCcore-13.3.0                     (D)
   CubeWriter/4.8.2-GCCcore-12.2.0
   CubeWriter/4.8.2-GCCcore-13.2.0
   CubeWriter/4.8.2-GCCcore-13.3.0                  (D)
   Extrae/3.8.3-gompi-2021a
   MUST/1.10.0-fiber-preview-gompi-2022a
   MUST/1.10.0-fiber-preview-nvompi-2022.07         (D)
   OPARI2/2.0.8-GCCcore-12.2.0
   OPARI2/2.0.8-GCCcore-13.2.0
   OPARI2/2.0.8-GCCcore-13.3.0                      (D)
   OTF-CPT/0.5-fix-logpath-gompi-2023b-Clang-18.1.8
   OTF-CPT/0.5-fix-logpath-iimpi-2023b
   OTF-CPT/0.5-no-stdcpp-gompi-2023b-Clang-18.1.8
   OTF-CPT/0.5-no-stdcpp-iimpi-2023b                (D)
   OTF2/3.0.3-GCCcore-12.2.0
   OTF2/3.0.3-GCCcore-13.2.0
   OTF2/3.0.3-GCCcore-13.3.0                        (D)
   PAPI/6.0.0.1-GCCcore-10.3.0
   PAPI/7.0.1-GCCcore-12.2.0
   PAPI/7.1.0-GCCcore-13.2.0
   PAPI/7.1.0-GCCcore-13.3.0                        (D)
   Paraver/4.10.0-foss-2021a
   Scalasca/2.6.1-gompi-2023b
   Scalasca/2.6.1-NVHPC-24.3-CUDA-12.3.0            (D)
   Score-P/8.4-gompi-2023b
   Score-P/8.4-NVHPC-24.3-CUDA-12.3.0               (D)
   Vampir/9.9.0
   Vampir/10.0.2
   Vampir/10.3.0                                    (D)

----------------------------- /apps/modules/phys ------------------------------
   CASTEP/24.1-foss-2023b
   COMSOL/5.2.0-COM
   COMSOL/5.2.0-EDU                       (D)
   DFTB+/23.1-intel-2022a
   DFTB+/24.1-foss-2023a-CUDA-12.1.1-PL
   DFTB+/24.1-foss-2023a-CUDA-12.1.1
   DFTB+/24.1-foss-2023a-PL_TB_MPI
   DFTB+/24.1-foss-2023a-PL_TB_noMPI
   DFTB+/24.1-foss-2023a
   DFTB+/24.1-intel-2022a-PL_TB_MPI       (D)
   DeepMD-kit/3.0.2-CUDA-12.8.0-conda
   EDEM/2025
   Gaussian/09-a02
   Gaussian/09-d01
   Gaussian/16_rev_c2                     (G,D)
   QMCPACK/3.14.0-foss-2021a-Python-3.9.5
   Siesta/5.0.0-beta1-foss-2023b
   UDUNITS/2.2.28-GCCcore-13.2.0
   Yambo/5.1.0-intel-2020a
   Yambo/5.2.3-intel-2020a-SLEPc
   Yambo/5.2.3-intel-2020a                (D)
   cuQuantum/23.10.0-CUDA-12.2.0-conda
   libmbd/0.12.6-foss-2023a
   phonopy/2.20.0-conda
   sqsgenerator/0.3-conda

---------------------------- /apps/modules/system -----------------------------
   CUDA/11.1.1-GCC-10.2.0
   CUDA/11.7.0
   CUDA/12.0.0
   CUDA/12.1.1
   CUDA/12.2.0
   CUDA/12.2.2
   CUDA/12.3.0
   CUDA/12.4.0                        (D)
   CUDA/12.6.0
   CUDA/12.8.0
   CUDAcore/11.1.1
   CUDAcore/11.6.0                    (D)
   Kerberos/1.20
   OpenPGM/5.2.122-GCCcore-13.2.0     (L)
   OpenSSL/1.1
   OpenSSL/1.1.1k-GCCcore-10.3.0
   OpenSSL/3                          (D)
   hwloc/2.2.0-GCCcore-9.3.0
   hwloc/2.2.0-GCCcore-10.2.0
   hwloc/2.4.1-GCCcore-10.3.0
   hwloc/2.5.0-GCCcore-11.2.0
   hwloc/2.7.1-GCCcore-11.3.0
   hwloc/2.8.0-GCCcore-12.2.0
   hwloc/2.9.1-GCCcore-12.3.0
   hwloc/2.9.2-GCCcore-13.2.0         (L)
   hwloc/2.10.0-GCCcore-13.3.0
   hwloc/2.10.0-GCCcore-14.2.0
   hwloc/2.11.2-GCCcore-14.2.0        (D)
   libdeflate/1.10-GCCcore-11.3.0
   libdeflate/1.15-GCCcore-12.2.0
   libdeflate/1.18-GCCcore-12.3.0
   libdeflate/1.19-GCCcore-13.2.0
   libdeflate/1.20-GCCcore-13.3.0
   libdeflate/1.20-GCCcore-14.2.0     (D)
   libpciaccess/0.16-GCCcore-9.3.0
   libpciaccess/0.16-GCCcore-10.2.0
   libpciaccess/0.16-GCCcore-10.3.0
   libpciaccess/0.16-GCCcore-11.2.0
   libpciaccess/0.16-GCCcore-11.3.0
   libpciaccess/0.17-GCCcore-12.2.0
   libpciaccess/0.17-GCCcore-12.3.0
   libpciaccess/0.17-GCCcore-13.2.0   (L)
   libpciaccess/0.18.1-GCCcore-13.3.0
   libpciaccess/0.18.1-GCCcore-14.2.0 (D)

--------------------------- /apps/modules/toolchain ---------------------------
   foss/2020a                                  iimpi/2019a
   foss/2020b                                  iimpi/2020a
   foss/2021a                                  iimpi/2020b
   foss/2021b                                  iimpi/2021a
   foss/2022a                                  iimpi/2021b
   foss/2022b                                  iimpi/2022a
   foss/2023a                                  iimpi/2022b
   foss/2023b                                  iimpi/2022.12
   foss/2024a                           (D)    iimpi/2023a
   fosscuda/2020b                              iimpi/2023b
   gcccuda/2020b                               iimpi/2024a    (D)
   gcccuda/2022b                        (D)    intel/2019a
   gfbf/2023a                                  intel/2020a
   gfbf/2023b                           (D)    intel/2020b
   gompi/2020a                                 intel/2021a
   gompi/2020b                                 intel/2021b
   gompi/2020c                                 intel/2022a
   gompi/2021a                                 intel/2022b
   gompi/2021b                                 intel/2022.12
   gompi/2022a                                 intel/2023a
   gompi/2022b                                 intel/2023b
   gompi/2023a                                 intel/2024a    (D)
   gompi/2023b                                 nvompi/2022.07
   gompi/2024a                          (D)    nvompi/2023.11
   gompic/2020b                                nvompi/2024.1
   iccifort/2019.1.144-GCC-8.2.0-2.31.1        nvompi/2024.3  (D)
   iimkl/2023a

----------------------------- /apps/modules/tools -----------------------------
   ANSYS/2022R2-intel-2022a
   ANSYS/2023R2-intel-2022.12-alamerini
   ANSYS/2023R2-intel-2022.12-palanti
   ANSYS/2023R2-intel-2022.12-vut
   ANSYS/2023R2-intel-2022.12                  (D)
   Cool-Retro-Term/1.2.0-GCCcore-13.2.0
   DB/18.1.32-GCCcore-8.2.0
   DB/18.1.32-GCCcore-9.3.0
   DB/18.1.40-GCCcore-10.2.0
   DB/18.1.40-GCCcore-10.3.0
   DB/18.1.40-GCCcore-11.2.0
   DB/18.1.40-GCCcore-11.3.0
   DB/18.1.40-GCCcore-12.2.0                   (D)
   Deprecated/1.2.14-foss-2023a
   EasyBuild/4.9.0                             (S)
   EasyBuild/4.9.1                             (S)
   EasyBuild/4.9.2                             (S)
   EasyBuild/4.9.3                             (S)
   EasyBuild/4.9.4                             (S)
   EasyBuild/5.0.0                             (S,D)
   Emacs/28.2-GCCcore-12.2.0
   Emacs/29.4-GCCcore-12.2.0                   (D)
   Firefox/44.0.2
   Firefox/127.0.1                             (D)
   GLPK/5.0-GCCcore-11.2.0
   Ghostscript/9.54.0-GCCcore-11.2.0
   Ghostscript/10.03.1-GCCcore-13.3.0          (D)
   IPython/8.17.2-GCCcore-13.2.0               (L)
   JupyterLab/4.2.0-GCCcore-13.2.0             (L)
   JupyterNotebook/7.2.0-GCCcore-13.2.0        (L)
   KAROLINA/FAKEintel
   LicenseChecker/1.0
   MAQAO/2.20.1
   MAQAO/2.21.1                                (D)
   MERIC/3.0.3-gompi-2023b-READEX
   MERIC/3.0.3-NVHPC-24.3-CUDA-12.3.0-READEX   (D)
   MIKE/2019_update1
   MIKE/2021_update1
   MIKE/2022
   MIKE/2023
   MIKE/2024
   MIKE/2025                                   (D)
   Meson/0.55.1-GCCcore-9.3.0-Python-3.8.2
   Meson/0.55.3-GCCcore-10.2.0
   Meson/0.58.0-GCCcore-10.3.0
   Meson/0.58.2-GCCcore-11.2.0
   Meson/0.62.1-GCCcore-11.3.0
   Meson/0.64.0-GCCcore-12.2.0
   Meson/0.64.1-GCCcore-12.2.0-Python-3.10.8
   Meson/1.1.1-GCCcore-12.3.0
   Meson/1.2.3-GCCcore-13.2.0
   Meson/1.4.0-GCCcore-13.3.0
   Meson/1.4.0-GCCcore-14.2.0                  (D)
   Ninja/1.10.0-GCCcore-9.3.0
   Ninja/1.10.1-GCCcore-10.2.0
   Ninja/1.10.2-GCCcore-10.3.0
   Ninja/1.10.2-GCCcore-11.2.0
   Ninja/1.10.2-GCCcore-11.3.0
   Ninja/1.11.1-GCCcore-12.2.0
   Ninja/1.11.1-GCCcore-12.3.0
   Ninja/1.11.1-GCCcore-13.2.0
   Ninja/1.12.1-GCCcore-13.3.0
   Ninja/1.12.1-GCCcore-14.2.0                 (D)
   PWTK/3.2
   Szip/2.1.1-GCCcore-9.3.0
   Szip/2.1.1-GCCcore-10.2.0
   Szip/2.1.1-GCCcore-10.3.0
   Szip/2.1.1-GCCcore-11.2.0
   Szip/2.1.1-GCCcore-11.3.0
   Szip/2.1.1-GCCcore-12.2.0
   Szip/2.1.1-GCCcore-12.3.0
   Szip/2.1.1-GCCcore-13.2.0
   Szip/2.1.1-GCCcore-13.3.0                   (D)
   UnZip/6.0-GCCcore-9.3.0
   UnZip/6.0-GCCcore-10.2.0
   UnZip/6.0-GCCcore-10.3.0
   UnZip/6.0-GCCcore-11.2.0
   UnZip/6.0-GCCcore-11.3.0
   UnZip/6.0-GCCcore-12.2.0
   UnZip/6.0-GCCcore-12.3.0
   UnZip/6.0-GCCcore-13.2.0
   UnZip/6.0-GCCcore-13.3.0
   UnZip/6.0-GCCcore-14.2.0                    (D)
   VTune/2023.2.0
   Vim/9.0.1434-GCCcore-12.2.0
   XZ/5.2.5-GCCcore-9.3.0
   XZ/5.2.5-GCCcore-10.2.0
   XZ/5.2.5-GCCcore-10.3.0
   XZ/5.2.5-GCCcore-11.2.0
   XZ/5.2.5-GCCcore-11.3.0
   XZ/5.2.5
   XZ/5.2.7-GCCcore-12.2.0
   XZ/5.4.2-GCCcore-12.3.0
   XZ/5.4.4-GCCcore-13.2.0                     (L)
   XZ/5.4.5-GCCcore-13.3.0
   XZ/5.4.5-GCCcore-14.2.0
   XZ/5.6.3-GCCcore-14.2.0                     (D)
   Z3/4.10.2-GCCcore-11.3.0
   Z3/4.12.2-GCCcore-12.2.0
   Z3/4.12.2-GCCcore-12.3.0
   Z3/4.13.0-GCCcore-13.2.0                    (D)
   Zip/3.0-GCCcore-11.3.0
   Zip/3.0-GCCcore-12.3.0                      (D)
   absl-py/2.1.0-GCCcore-12.3.0
   apptainer/1.1.5
   apptainer/1.2.5                             (D)
   archspec/0.1.3-GCCcore-11.2.0
   archspec/0.1.4-GCCcore-11.3.0
   archspec/0.2.1-GCCcore-12.3.0
   archspec/0.2.5-GCCcore-12.3.0               (D)
   awscli/1.27.75-GCCcore-12.2.0-Python-3.10.8
   binutils/2.31.1-GCCcore-8.2.0
   binutils/2.31.1
   binutils/2.34-GCCcore-9.3.0
   binutils/2.34
   binutils/2.35-GCCcore-10.2.0
   binutils/2.35
   binutils/2.36.1-GCCcore-10.3.0
   binutils/2.36.1
   binutils/2.37-GCCcore-11.2.0
   binutils/2.37
   binutils/2.38-GCCcore-11.3.0
   binutils/2.38
   binutils/2.39-GCCcore-12.2.0
   binutils/2.39
   binutils/2.40-GCCcore-12.3.0
   binutils/2.40-GCCcore-13.2.0                (L)
   binutils/2.40
   binutils/2.42-GCCcore-13.3.0
   binutils/2.42-GCCcore-14.2.0
   binutils/2.42                               (D)
   bzip2/1.0.8-GCCcore-9.3.0
   bzip2/1.0.8-GCCcore-10.2.0
   bzip2/1.0.8-GCCcore-10.3.0
   bzip2/1.0.8-GCCcore-11.2.0
   bzip2/1.0.8-GCCcore-11.3.0
   bzip2/1.0.8-GCCcore-12.2.0
   bzip2/1.0.8-GCCcore-12.3.0
   bzip2/1.0.8-GCCcore-13.2.0                  (L)
   bzip2/1.0.8-GCCcore-13.3.0
   bzip2/1.0.8-GCCcore-14.2.0
   bzip2/1.0.8                                 (D)
   c-blosc/1.21.0-GCC-10.2.0
   cURL/7.69.1-GCCcore-9.3.0
   cURL/7.72.0-GCCcore-10.2.0
   cURL/7.76.0-GCCcore-10.3.0
   cURL/7.76.0
   cURL/7.78.0-GCCcore-11.2.0
   cURL/7.83.0-GCCcore-11.3.0
   cURL/7.86.0-GCCcore-12.2.0
   cURL/8.0.1-GCCcore-12.3.0
   cURL/8.3.0-GCCcore-13.2.0
   cURL/8.7.1-GCCcore-13.3.0
   cURL/8.7.1-GCCcore-14.2.0
   cURL/8.11.1-GCCcore-14.2.0                  (D)
   cffi/1.15.1-GCCcore-12.3.0
   cffi/1.15.1-GCCcore-13.2.0                  (L)
   cffi/1.16.0-GCCcore-13.3.0                  (D)
   code-server/4.89.1
   cppy/1.1.0-GCCcore-11.2.0
   cppy/1.2.1-GCCcore-11.3.0
   cppy/1.2.1-GCCcore-12.3.0
   cppy/1.2.1-GCCcore-13.2.0                   (D)
   cryptography/41.0.1-GCCcore-12.3.0
   cryptography/41.0.5-GCCcore-13.2.0          (L)
   cryptography/42.0.8-GCCcore-13.3.0          (D)
   cst-studio/cst_2019
   cst-studio/2019
   cst-studio/2021                             (D)
   ecBuild/3.8.0
   ecCodes/2.31.0-gompi-2023b
   expat/2.2.6-GCCcore-8.2.0
   expat/2.2.9-GCCcore-9.3.0
   expat/2.2.9-GCCcore-10.2.0
   expat/2.2.9-GCCcore-10.3.0
   expat/2.4.1-GCCcore-11.2.0
   expat/2.4.8-GCCcore-11.3.0
   expat/2.4.9-GCCcore-12.2.0
   expat/2.5.0-GCCcore-12.3.0
   expat/2.5.0-GCCcore-13.2.0
   expat/2.6.2-GCCcore-13.3.0
   expat/2.6.4-GCCcore-14.2.0                  (D)
   expecttest/0.1.5-GCCcore-12.3.0
   expecttest/0.2.1-GCCcore-13.2.0             (D)
   flit/3.9.0-GCCcore-12.3.0
   flit/3.9.0-GCCcore-13.2.0
   flit/3.9.0-GCCcore-13.3.0                   (D)
   gawk/5.1.1-GCC-11.2.0
   gettext/0.20.1-GCCcore-9.3.0
   gettext/0.20.1
   gettext/0.21-GCCcore-10.2.0
   gettext/0.21-GCCcore-10.3.0
   gettext/0.21-GCCcore-11.2.0
   gettext/0.21-GCCcore-11.3.0
   gettext/0.21
   gettext/0.21.1-GCCcore-12.2.0
   gettext/0.21.1-GCCcore-12.3.0
   gettext/0.21.1
   gettext/0.22-GCCcore-13.2.0
   gettext/0.22-GCCcore-14.2.0
   gettext/0.22
   gettext/0.22.5-GCCcore-13.3.0
   gettext/0.22.5-GCCcore-14.2.0
   gettext/0.22.5                              (D)
   git/2.23.0-GCCcore-9.3.0-nodocs
   git/2.28.0-GCCcore-10.2.0-nodocs
   git/2.32.0-GCCcore-10.3.0-nodocs
   git/2.33.1-GCCcore-11.2.0-nodocs
   git/2.36.0-GCCcore-11.3.0-nodocs
   git/2.38.1-GCCcore-12.2.0-nodocs
   git/2.41.0-GCCcore-12.3.0-nodocs
   git/2.42.0-GCCcore-13.2.0
   git/2.45.0
   git/2.45.1-GCCcore-13.3.0
   git/2.46.0                                  (D)
   googletest/1.14.0-GCCcore-13.2.0
   googletest/1.15.2-GCCcore-13.3.0            (D)
   groff/1.22.4-GCCcore-9.3.0
   groff/1.22.4-GCCcore-10.2.0
   groff/1.22.4-GCCcore-10.3.0
   groff/1.22.4-GCCcore-11.2.0
   groff/1.22.4-GCCcore-11.3.0
   groff/1.22.4-GCCcore-12.2.0
   groff/1.22.4-GCCcore-12.3.0
   groff/1.23.0-GCCcore-13.2.0
   groff/1.23.0-GCCcore-13.3.0
   groff/1.23.0-GCCcore-14.2.0                 (D)
   gzip/1.10-GCCcore-9.3.0
   gzip/1.10-GCCcore-10.2.0
   gzip/1.10-GCCcore-10.3.0
   gzip/1.10-GCCcore-11.2.0
   gzip/1.12-GCCcore-11.3.0
   gzip/1.12-GCCcore-12.2.0
   gzip/1.12-GCCcore-12.3.0
   gzip/1.13-GCCcore-13.2.0
   gzip/1.13-GCCcore-13.3.0
   gzip/1.13-GCCcore-14.2.0                    (D)
   hatch-jupyter-builder/0.9.1-GCCcore-13.2.0
   hatchling/1.18.0-GCCcore-12.3.0
   hatchling/1.18.0-GCCcore-13.2.0
   hatchling/1.24.2-GCCcore-13.3.0             (D)
   help2man/1.47.12-GCCcore-9.3.0
   help2man/1.47.16-GCCcore-10.2.0
   help2man/1.48.3-GCCcore-10.3.0
   help2man/1.48.3-GCCcore-11.2.0
   help2man/1.49.2-GCCcore-11.3.0
   help2man/1.49.2-GCCcore-12.2.0
   help2man/1.49.3-GCCcore-12.3.0
   help2man/1.49.3-GCCcore-13.2.0
   help2man/1.49.3-GCCcore-13.3.0
   help2man/1.49.3-GCCcore-14.2.0              (D)
   htop/3.2.1
   htop/3.3.0                                  (D)
   hypothesis/5.41.2-GCCcore-10.2.0
   hypothesis/6.13.1-GCCcore-10.3.0
   hypothesis/6.14.6-GCCcore-11.2.0
   hypothesis/6.46.7-GCCcore-11.3.0
   hypothesis/6.68.2-GCCcore-12.2.0
   hypothesis/6.82.0-GCCcore-12.3.0
   hypothesis/6.90.0-GCCcore-13.2.0            (D)
   jedi/0.19.1-GCCcore-13.2.0                  (L)
   jupyter-server/2.14.0-GCCcore-13.2.0        (L)
   libarchive/3.4.3-GCCcore-10.2.0
   libarchive/3.5.1-GCCcore-10.3.0
   libarchive/3.5.1-GCCcore-11.2.0
   libarchive/3.5.1
   libarchive/3.6.1-GCCcore-11.3.0
   libarchive/3.6.1-GCCcore-12.2.0
   libarchive/3.6.2-GCCcore-12.3.0
   libarchive/3.7.2-GCCcore-13.2.0
   libarchive/3.7.4-GCCcore-13.3.0
   libarchive/3.7.4-GCCcore-14.2.0
   libarchive/3.7.7-GCCcore-14.2.0             (D)
   maturin/1.3.1-GCCcore-13.2.0
   maturin/1.6.0-GCCcore-13.3.0                (D)
   meson-python/0.13.2-GCCcore-12.3.0
   meson-python/0.15.0-GCCcore-13.2.0          (D)
   ml_dtypes/0.3.2-gfbf-2023a
   networkx/2.4-foss-2020a-Python-3.8.2
   networkx/2.5-foss-2020b
   networkx/2.5-fosscuda-2020b
   networkx/2.8.4-foss-2022a
   networkx/3.1-gfbf-2023a
   networkx/3.2.1-gfbf-2023b                   (D)
   numactl/2.0.12-GCCcore-8.2.0
   numactl/2.0.13-GCCcore-9.3.0
   numactl/2.0.13-GCCcore-10.2.0
   numactl/2.0.14-GCCcore-10.3.0
   numactl/2.0.14-GCCcore-11.2.0
   numactl/2.0.14-GCCcore-11.3.0
   numactl/2.0.16-GCCcore-12.2.0
   numactl/2.0.16-GCCcore-12.3.0
   numactl/2.0.16-GCCcore-13.2.0               (L)
   numactl/2.0.16
   numactl/2.0.18-GCCcore-13.3.0
   numactl/2.0.18-GCCcore-14.2.0
   numactl/2.0.19-GCCcore-14.2.0               (D)
   parallel/20230722-GCCcore-12.2.0
   patchelf/0.18.0-GCCcore-12.3.0
   patchelf/0.18.0-GCCcore-13.2.0
   patchelf/0.18.0-GCCcore-13.3.0              (D)
   petsc4py/3.21.2-foss-2022b
   poetry/1.5.1-GCCcore-12.3.0
   poetry/1.6.1-GCCcore-13.2.0
   poetry/1.8.3-GCCcore-13.3.0                 (D)
   pytest-flakefinder/1.1.0-GCCcore-12.3.0
   pytest-flakefinder/1.1.0-GCCcore-13.2.0     (D)
   pytest-rerunfailures/12.0-GCCcore-12.2.0
   pytest-rerunfailures/12.0-GCCcore-12.3.0
   pytest-rerunfailures/14.0-GCCcore-13.2.0    (D)
   pytest-shard/0.1.2-GCCcore-12.2.0
   pytest-shard/0.1.2-GCCcore-12.3.0
   pytest-shard/0.1.2-GCCcore-13.2.0           (D)
   pytest-xdist/2.5.0-GCCcore-11.3.0
   pytest-xdist/3.3.1-GCCcore-12.3.0           (D)
   rclone/1.69.1
   re2c/2.0.3-GCCcore-10.2.0
   re2c/2.1.1-GCCcore-10.3.0
   re2c/2.2-GCCcore-11.2.0
   re2c/3.0-GCCcore-12.2.0
   re2c/3.1-GCCcore-12.3.0
   re2c/3.1-GCCcore-13.2.0
   re2c/3.1-GCCcore-13.3.0                     (D)
   s3cmd/2.3.0-GCCcore-12.2.0-Python-3.10.8
   s5cmd/2.2.2
   setuptools-rust/1.6.0-GCCcore-12.3.0
   setuptools-rust/1.8.0-GCCcore-13.2.0
   setuptools-rust/1.9.0-GCCcore-13.3.0        (D)
   slepc4py/3.21.1-foss-2022b
   squashfuse/0.5.2-GCC-12.3.0
   tcl-thread/2.8.8-GCCcore-13.2.0
   tclreadline/2.4.0-GCCcore-13.2.0
   util-linux/2.36-GCCcore-10.2.0
   util-linux/2.36-GCCcore-10.3.0
   util-linux/2.36
   util-linux/2.37-GCCcore-11.2.0
   util-linux/2.38-GCCcore-11.3.0
   util-linux/2.38.1-GCCcore-12.2.0
   util-linux/2.39-GCCcore-12.3.0
   util-linux/2.39-GCCcore-13.2.0              (L)
   util-linux/2.40-GCCcore-13.3.0
   util-linux/2.40-GCCcore-14.2.0              (D)
   virtualenv/20.23.1-GCCcore-12.3.0
   virtualenv/20.24.6-GCCcore-13.2.0           (L)
   virtualenv/20.26.2-GCCcore-13.3.0           (D)
   wrapt/1.15.0-gfbf-2023a
   xxd/8.2.4220-GCCcore-10.2.0
   xxd/8.2.4220-GCCcore-11.2.0
   xxd/8.2.4220-GCCcore-11.3.0
   xxd/9.0.2112-GCCcore-12.3.0                 (D)

------------------------------ /apps/modules/vis ------------------------------
   ATK/2.36.0-GCCcore-10.3.0
   ATK/2.38.0-GCCcore-12.2.0
   ATK/2.38.0-GCCcore-13.3.0                  (D)
   Blender/4.0.2-GCCcore-12.2.0
   FFmpeg/4.3.2-GCCcore-10.3.0
   FFmpeg/4.3.2-GCCcore-11.2.0
   FFmpeg/4.4.2-GCCcore-11.3.0
   FFmpeg/5.1.2-GCCcore-12.2.0
   FFmpeg/6.0-GCCcore-12.3.0
   FFmpeg/6.0-GCCcore-13.2.0
   FFmpeg/7.0.2-GCCcore-13.3.0                (D)
   FLTK/1.3.7-GCCcore-11.2.0
   GL2PS/1.4.2-GCCcore-11.2.0
   GLib/2.66.1-GCCcore-10.2.0
   GLib/2.68.2-GCCcore-10.3.0
   GLib/2.69.1-GCCcore-11.2.0
   GLib/2.75.0-GCCcore-12.2.0
   GLib/2.77.1-GCCcore-12.3.0
   GLib/2.78.1-GCCcore-13.2.0
   GLib/2.80.4-GCCcore-13.3.0                 (D)
   GST-plugins-base/1.18.4-GCC-10.3.0
   GST-plugins-base/1.24.8-GCC-13.3.0         (D)
   GStreamer/1.18.4-GCC-10.3.0
   GStreamer/1.24.8-GCC-13.3.0                (D)
   GTK3/3.24.29-GCCcore-10.3.0
   GTK3/3.24.35-GCCcore-12.2.0
   GTK3/3.24.42-GCCcore-13.3.0                (D)
   Gdk-Pixbuf/2.42.6-GCCcore-10.3.0
   Gdk-Pixbuf/2.42.10-GCCcore-12.2.0
   Gdk-Pixbuf/2.42.11-GCCcore-13.3.0          (D)
   GraphicsMagick/1.3.36-GCCcore-11.2.0
   GraphicsMagick/1.3.45-GCCcore-13.3.0       (D)
   HarfBuzz/2.6.7-GCCcore-10.2.0
   HarfBuzz/2.8.1-GCCcore-10.3.0
   HarfBuzz/2.8.2-GCCcore-11.2.0
   HarfBuzz/5.3.1-GCCcore-12.2.0
   HarfBuzz/5.3.1-GCCcore-12.3.0
   HarfBuzz/8.2.2-GCCcore-13.2.0
   HarfBuzz/9.0.0-GCCcore-13.3.0              (D)
   JasPer/2.0.24-GCCcore-10.2.0
   JasPer/2.0.28-GCCcore-10.3.0
   JasPer/2.0.33-GCCcore-11.2.0
   JasPer/4.0.0-GCCcore-12.2.0
   JasPer/4.0.0-GCCcore-12.3.0
   JasPer/4.0.0-GCCcore-13.2.0
   JasPer/4.2.4-GCCcore-13.3.0                (D)
   LittleCMS/2.15-GCCcore-12.3.0
   LittleCMS/2.15-GCCcore-13.2.0              (D)
   Mesa/20.2.1-GCCcore-10.2.0
   Mesa/21.1.1-GCCcore-10.3.0
   Mesa/21.1.7-GCCcore-11.2.0
   Mesa/22.0.3-GCCcore-11.3.0
   Mesa/22.2.4-GCCcore-12.2.0
   Mesa/23.1.4-GCCcore-12.3.0
   Mesa/23.1.9-GCCcore-13.2.0
   Mesa/24.1.3-GCCcore-13.3.0                 (D)
   OVITO/3.11.0-basic-bin
   Pango/1.48.5-GCCcore-10.3.0
   Pango/1.48.8-GCCcore-11.2.0
   Pango/1.50.12-GCCcore-12.2.0
   Pango/1.50.14-GCCcore-12.3.0
   Pango/1.54.0-GCCcore-13.3.0                (D)
   ParaView/5.9.1-intel-2021a-mpi
   ParaView/5.11.2-foss-2023a                 (D)
   Pillow/8.0.1-GCCcore-10.2.0
   Pillow/8.3.2-GCCcore-11.2.0
   Pillow/9.1.1-GCCcore-11.3.0
   Pillow/10.0.0-GCCcore-12.3.0
   Pillow/10.2.0-GCCcore-13.2.0               (D)
   PyQt5/5.15.11-GCCcore-13.2.0-Python-3.11.5
   PyQt6/6.8.1-GCCcore-13.3.0
   Tk/8.6.10-GCCcore-10.2.0
   Tk/8.6.11-GCCcore-11.2.0
   Tk/8.6.12-GCCcore-11.3.0
   Tk/8.6.13-GCCcore-12.3.0
   Tk/8.6.13-GCCcore-13.2.0                   (D)
   TurboVNC/3.1.1
   VESTA/3.5.8-gtk3
   VTK/9.1.0-foss-2021b
   VTK/9.2.2-foss-2022a
   VTK/9.2.6-foss-2023a
   VTK/9.3.0-foss-2023a
   VTK/9.3.0-foss-2023b                       (D)
   VirtualGL/3.1-GCC-12.3.0
   VisIt/2.13.3
   Visit/3.1.4
   Visit/3.4.1-foss-2023a                     (D)
   Wayland/1.22.0-GCCcore-13.2.0
   Wayland/1.23.0-GCCcore-13.3.0              (D)
   X11/20201008-GCCcore-10.2.0
   X11/20210518-GCCcore-10.3.0
   X11/20210802-GCCcore-11.2.0
   X11/20220504-GCCcore-11.3.0
   X11/20221110-GCCcore-12.2.0
   X11/20230603-GCCcore-12.3.0
   X11/20231019-GCCcore-13.2.0
   X11/20240607-GCCcore-13.3.0
   X11/20240607-GCCcore-14.2.0                (D)
   Xvfb/21.1.8-GCCcore-12.3.0
   assimp/5.4.3-GCCcore-13.3.0
   at-spi2-atk/2.38.0-GCCcore-10.3.0
   at-spi2-atk/2.38.0-GCCcore-12.2.0
   at-spi2-atk/2.38.0-GCCcore-13.3.0          (D)
   at-spi2-core/2.40.2-GCCcore-10.3.0
   at-spi2-core/2.46.0-GCCcore-12.2.0
   at-spi2-core/2.54.0-GCCcore-13.3.0         (D)
   cairo/1.16.0-GCCcore-10.2.0
   cairo/1.16.0-GCCcore-10.3.0
   cairo/1.16.0-GCCcore-11.2.0
   cairo/1.17.4-GCCcore-12.2.0
   cairo/1.17.8-GCCcore-12.3.0
   cairo/1.18.0-GCCcore-13.2.0
   cairo/1.18.0-GCCcore-13.3.0                (D)
   fontconfig/2.13.92-GCCcore-10.2.0
   fontconfig/2.13.93-GCCcore-10.3.0
   fontconfig/2.13.94-GCCcore-11.2.0
   fontconfig/2.14.0-GCCcore-11.3.0
   fontconfig/2.14.1-GCCcore-12.2.0
   fontconfig/2.14.2-GCCcore-12.3.0
   fontconfig/2.14.2-GCCcore-13.2.0
   fontconfig/2.15.0-GCCcore-13.3.0
   fontconfig/2.15.0-GCCcore-14.2.0           (D)
   freetype/2.10.3-GCCcore-10.2.0
   freetype/2.10.4-GCCcore-10.3.0
   freetype/2.11.0-GCCcore-11.2.0
   freetype/2.12.1-GCCcore-11.3.0
   freetype/2.12.1-GCCcore-12.2.0
   freetype/2.13.0-GCCcore-12.3.0
   freetype/2.13.2-GCCcore-13.2.0
   freetype/2.13.2-GCCcore-13.3.0
   freetype/2.13.2-GCCcore-14.2.0             (D)
   gettext/0.19.4
   gnuplot/5.4.2-GCCcore-10.3.0
   gnuplot/5.4.2-GCCcore-11.2.0
   gnuplot/5.4.6-GCCcore-12.2.0
   gnuplot/5.4.8-GCCcore-12.3.0               (D)
   jbigkit/2.1-GCCcore-10.2.0
   jbigkit/2.1-GCCcore-10.3.0
   jbigkit/2.1-GCCcore-11.2.0
   jbigkit/2.1-GCCcore-11.3.0
   jbigkit/2.1-GCCcore-12.2.0
   jbigkit/2.1-GCCcore-12.3.0
   jbigkit/2.1-GCCcore-13.2.0
   jbigkit/2.1-GCCcore-13.3.0
   jbigkit/2.1-GCCcore-14.2.0                 (D)
   libGLU/9.0.1-GCCcore-10.2.0
   libGLU/9.0.1-GCCcore-10.3.0
   libGLU/9.0.2-GCCcore-11.2.0
   libGLU/9.0.2-GCCcore-11.3.0
   libGLU/9.0.2-GCCcore-12.2.0
   libGLU/9.0.3-GCCcore-12.3.0
   libGLU/9.0.3-GCCcore-13.2.0
   libGLU/9.0.3-GCCcore-13.3.0                (D)
   matplotlib/3.3.3-foss-2020b
   matplotlib/3.4.3-foss-2021b
   matplotlib/3.5.2-foss-2022a
   matplotlib/3.7.2-gfbf-2023a
   matplotlib/3.8.2-gfbf-2023b                (D)
   mayavi/4.8.2-foss-2023b
   pixman/0.40.0-GCCcore-10.2.0
   pixman/0.40.0-GCCcore-10.3.0
   pixman/0.40.0-GCCcore-11.2.0
   pixman/0.42.2-GCCcore-12.2.0
   pixman/0.42.2-GCCcore-12.3.0
   pixman/0.42.2-GCCcore-13.2.0
   pixman/0.43.4-GCCcore-13.3.0               (D)
   plotly.py/4.14.3-GCCcore-10.2.0
   tensorboardX/2.6.2.2-foss-2023a
   wxWidgets/3.1.5-GCC-10.3.0
   wxWidgets/3.2.6-GCC-13.3.0                 (D)
   x264/20210414-GCCcore-10.3.0
   x264/20210613-GCCcore-11.2.0
   x264/20220620-GCCcore-11.3.0
   x264/20230226-GCCcore-12.2.0
   x264/20230226-GCCcore-12.3.0
   x264/20231019-GCCcore-13.2.0
   x264/20240513-GCCcore-13.3.0               (D)
   x265/3.5-GCCcore-10.3.0
   x265/3.5-GCCcore-11.2.0
   x265/3.5-GCCcore-11.3.0
   x265/3.5-GCCcore-12.2.0
   x265/3.5-GCCcore-12.3.0
   x265/3.5-GCCcore-13.2.0
   x265/3.6-GCCcore-13.3.0                    (D)
   xprop/1.2.5-GCCcore-11.2.0

---------------- /opt/cray/pe/craype-targets/1.4.0/modulefiles ----------------
   craype-accel-amd-gfx908      craype-network-ofi        craype-x86-icelake
   craype-accel-host            craype-network-ucx        craype-x86-milan
   craype-broadwell             craype-x86-cascadelake    craype-x86-rome
   craype-network-infiniband    craype-x86-genoa          craype-x86-skylake

--------------- /apps/all/intel-compilers/2023.2.1/modulefiles ----------------
   compiler/2023.2.1

-------------------------- /opt/cray/pe/modulefiles ---------------------------
   PrgEnv-aocc/8.4.0
   PrgEnv-cray/8.4.0
   PrgEnv-gnu/8.4.0
   PrgEnv-intel/8.4.0
   atp/3.15.3
   cce/17.0.1
   cray-R/4.3.2
   cray-ccdb/5.0.3
   cray-cti/2.18.3
   cray-dsmml/0.2.2
   cray-dyninst/12.3.1
   cray-fftw/3.3.10.7
   cray-hdf5-parallel/1.12.2.11
   cray-hdf5/1.12.2.11
   cray-libsci/24.03.0
   cray-mpich-abi-pre-intel-5.0/8.1.29
   cray-mpich-abi/8.1.29
   cray-mpich-ucx/8.1.29
   cray-mpich/8.1.29
   cray-mrnet/5.1.2
   cray-netcdf-hdf5parallel/4.9.0.11
   cray-netcdf/4.9.0.11
   cray-openshmemx/11.4.0.beta
   cray-parallel-netcdf/1.12.3.11
   cray-pmi/6.1.14
   cray-python/3.11.7
   cray-stat/4.12.2
   craype-dl-plugin-py3/21.02.1.3
   craype/2.7.31
   craypkg-gen/1.3.32
   gcc-native/10.3
   gcc-native/11.2
   gcc-native/12.2                     (D)
   gdb4hpc/4.16.1
   libfabric/1.13.1
   papi/7.1.0.1
   perftools-base/24.03.0
   sanitizers4hpc/1.1.2
   totalview/2023.4.16
   valgrind4hpc/2.13.2

-------------- /apps/all/Lmod/8.7.37/lmod/lmod/modulefiles/Core ---------------
   lmod    settarg

---- This is a list of module extensions. Use "module --nx avail ..." to not show extensions. ----
    Cycler               (E)     ml_dtypes                  (E)
    Deprecated           (E)     oauthlib                   (E)
    Markdown             (E)     opt-einsum                 (E)
    SQLAlchemy           (E)     opt_einsum                 (E)
    TensorFlow           (E)     packaging                  (E)
    Werkzeug             (E)     pip                        (E)
    absl-py              (E)     pluggy                     (E)
    alembic              (E)     portpicker                 (E)
    apipkg               (E)     psycopg2                   (E)
    astor                (E)     pyasn1-modules             (E)
    astunparse           (E)     pyproject-metadata         (E)
    async-timeout        (E)     pytest                     (E)
    asyncpg              (E)     pytest-forked              (E)
    beniget              (E)     pytest-xdist               (E)
    cachetools           (E)     pythran                    (E)
    configobj            (E)     requests-oauthlib          (E)
    contourpy            (E)     rsa                        (E)
    elementpath          (E)     ruamel.yaml                (E)
    etils                (E)     ruamel.yaml.base           (E)
    exceptiongroup       (E)     ruamel.yaml.clib           (E)
    execnet              (E)     ruamel.yaml.cmd            (E)
    flit_core            (E)     ruamel.yaml.convert        (E)
    fonttools            (E)     scikit_build_core          (E)
    gast                 (E)     setuptools                 (E)
    google-auth          (E)     setuptools_scm             (E)
    google-auth-oauthlib (E)     tblib                      (E)
    google-pasta         (E)     tensorboard                (E)
    greenlet             (E)     tensorboard-data-server    (E)
    grpcio               (E)     tensorboard-plugin-profile (E)
    gviz-api             (E)     tensorboard-plugin-wit     (E)
    iniconfig            (E)     tensorflow-estimator       (E)
    jax                  (E)     termcolor                  (E)
    keras                (E)     tomli                      (E)
    kiwisolver           (E)     typing_extensions          (E)
    lz4                  (E)     wheel                      (E)
    matplotlib           (E)     wrapt                      (E)
    meson-python         (E)     xmlschema                  (E)

These extensions cannot be loaded directly, use "module spider extension_name" for more information.

  Where:
   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
   E:        Extension that is provided by another module
   G:        Built for GPU
   L:        Module is loaded
   Lic:      A license is required
   S:        Module is Sticky, requires --force to unload or purge

If the avail list is too long consider trying:

"module --default avail" or "ml -d av" to just list the default modules.
"module overview" or "ml ov" to display the number of modules for each name.

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".

lists all available (loadable) modules and module groups.

In the current module naming scheme, each module name consists of two parts:

-the part before the first /, corresponding to the software name
-the remainder, corresponding to the software version, the compiler toolchain that was used to install the software, and a possible version suffix

load a specific module x

%%bash
ml load OpenMPI/5.0.5-NVHPC-24.3-CUDA-12.3.0
The following have been reloaded with a version change:
  1) GCCcore/13.2.0 => GCCcore/12.2.0
  2) OpenMPI/4.1.6-GCC-13.2.0 => OpenMPI/5.0.5-NVHPC-24.3-CUDA-12.3.0
  3) PMIx/4.2.6-GCCcore-13.2.0 => PMIx/5.0.2-GCCcore-12.2.0
  4) UCC/1.2.0-GCCcore-13.2.0 => UCC/1.3.0-GCCcore-12.2.0
  5) UCX/1.15.0-GCCcore-13.2.0 => UCX/1.16.0-GCCcore-12.2.0
  6) XZ/5.4.4-GCCcore-13.2.0 => XZ/5.2.7-GCCcore-12.2.0
  7) binutils/2.40-GCCcore-13.2.0 => binutils/2.39-GCCcore-12.2.0
  8) hwloc/2.9.2-GCCcore-13.2.0 => hwloc/2.8.0-GCCcore-12.2.0
  9) libevent/2.1.12-GCCcore-13.2.0 => libevent/2.1.12-GCCcore-12.2.0
 10) libfabric/1.19.0-GCCcore-13.2.0 => libfabric/1.16.1-GCCcore-12.2.0
 11) libpciaccess/0.17-GCCcore-13.2.0 => libpciaccess/0.17-GCCcore-12.2.0
 12) libxml2/2.11.5-GCCcore-13.2.0 => libxml2/2.10.3-GCCcore-12.2.0
 13) numactl/2.0.16-GCCcore-13.2.0 => numactl/2.0.16-GCCcore-12.2.0
 14) zlib/1.2.13-GCCcore-13.2.0 => zlib/1.2.12-GCCcore-12.2.0

unload a specific module x

%%bash
ml load Python/2.7.18-GCCcore-9.3.0
ml list
# To revert the changes to the environment that were made by a particular module, you can use ml -\<modname>.
ml unload Python/2.7.18-GCCcore-9.3.0 # -Python/2.7.18-GCCcore-9.3.0
ml list
The following have been reloaded with a version change:
  1) GCCcore/13.2.0 => GCCcore/9.3.0
  2) Python/3.11.5-GCCcore-13.2.0 => Python/2.7.18-GCCcore-9.3.0
  3) SQLite/3.43.1-GCCcore-13.2.0 => SQLite/3.31.1-GCCcore-9.3.0
  4) Tcl/8.6.13-GCCcore-13.2.0 => Tcl/8.6.10-GCCcore-9.3.0
  5) binutils/2.40-GCCcore-13.2.0 => binutils/2.34-GCCcore-9.3.0
  6) bzip2/1.0.8-GCCcore-13.2.0 => bzip2/1.0.8-GCCcore-9.3.0
  7) libffi/3.4.4-GCCcore-13.2.0 => libffi/3.3-GCCcore-9.3.0
  8) libreadline/8.2-GCCcore-13.2.0 => libreadline/8.0-GCCcore-9.3.0
  9) ncurses/6.4-GCCcore-13.2.0 => ncurses/6.2-GCCcore-9.3.0
 10) zlib/1.2.13-GCCcore-13.2.0 => zlib/1.2.11-GCCcore-9.3.0


Currently Loaded Modules:
  1) XALT/3.0.2                                (S)
  2) GCC/13.2.0
  3) numactl/2.0.16-GCCcore-13.2.0
  4) XZ/5.4.4-GCCcore-13.2.0
  5) libxml2/2.11.5-GCCcore-13.2.0
  6) libpciaccess/0.17-GCCcore-13.2.0
  7) hwloc/2.9.2-GCCcore-13.2.0
  8) libevent/2.1.12-GCCcore-13.2.0
  9) UCX/1.15.0-GCCcore-13.2.0
 10) libfabric/1.19.0-GCCcore-13.2.0
 11) PMIx/4.2.6-GCCcore-13.2.0
 12) UCC/1.2.0-GCCcore-13.2.0
 13) OpenMPI/4.1.6-GCC-13.2.0
 14) Julia/1.10.0-linux-x86_64
 15) libyaml/0.2.5-GCCcore-13.2.0
 16) cffi/1.15.1-GCCcore-13.2.0
 17) cryptography/41.0.5-GCCcore-13.2.0
 18) virtualenv/20.24.6-GCCcore-13.2.0
 19) Python-bundle-PyPI/2023.10-GCCcore-13.2.0
 20) PyYAML/6.0.1-GCCcore-13.2.0
 21) OpenPGM/5.2.122-GCCcore-13.2.0
 22) libsodium/1.0.19-GCCcore-13.2.0
 23) util-linux/2.39-GCCcore-13.2.0
 24) ZeroMQ/4.3.5-GCCcore-13.2.0
 25) PyZMQ/25.1.2-GCCcore-13.2.0
 26) tornado/6.4-GCCcore-13.2.0
 27) BeautifulSoup/4.12.2-GCCcore-13.2.0
 28) jupyter-server/2.14.0-GCCcore-13.2.0
 29) JupyterLab/4.2.0-GCCcore-13.2.0
 30) libxslt/1.1.38-GCCcore-13.2.0
 31) lxml/4.9.3-GCCcore-13.2.0
 32) jedi/0.19.1-GCCcore-13.2.0
 33) IPython/8.17.2-GCCcore-13.2.0
 34) JupyterNotebook/7.2.0-GCCcore-13.2.0
 35) GCCcore/9.3.0
 36) zlib/1.2.11-GCCcore-9.3.0
 37) binutils/2.34-GCCcore-9.3.0
 38) bzip2/1.0.8-GCCcore-9.3.0
 39) ncurses/6.2-GCCcore-9.3.0
 40) libreadline/8.0-GCCcore-9.3.0
 41) Tcl/8.6.10-GCCcore-9.3.0
 42) SQLite/3.31.1-GCCcore-9.3.0
 43) GMP/6.2.0-GCCcore-9.3.0
 44) libffi/3.3-GCCcore-9.3.0
 45) Python/2.7.18-GCCcore-9.3.0

  Where:
   S:  Module is Sticky, requires --force to unload or purge

 


Currently Loaded Modules:
  1) XALT/3.0.2                                (S)
  2) GCC/13.2.0
  3) numactl/2.0.16-GCCcore-13.2.0
  4) XZ/5.4.4-GCCcore-13.2.0
  5) libxml2/2.11.5-GCCcore-13.2.0
  6) libpciaccess/0.17-GCCcore-13.2.0
  7) hwloc/2.9.2-GCCcore-13.2.0
  8) libevent/2.1.12-GCCcore-13.2.0
  9) UCX/1.15.0-GCCcore-13.2.0
 10) libfabric/1.19.0-GCCcore-13.2.0
 11) PMIx/4.2.6-GCCcore-13.2.0
 12) UCC/1.2.0-GCCcore-13.2.0
 13) OpenMPI/4.1.6-GCC-13.2.0
 14) Julia/1.10.0-linux-x86_64
 15) libyaml/0.2.5-GCCcore-13.2.0
 16) cffi/1.15.1-GCCcore-13.2.0
 17) cryptography/41.0.5-GCCcore-13.2.0
 18) virtualenv/20.24.6-GCCcore-13.2.0
 19) Python-bundle-PyPI/2023.10-GCCcore-13.2.0
 20) PyYAML/6.0.1-GCCcore-13.2.0
 21) OpenPGM/5.2.122-GCCcore-13.2.0
 22) libsodium/1.0.19-GCCcore-13.2.0
 23) util-linux/2.39-GCCcore-13.2.0
 24) ZeroMQ/4.3.5-GCCcore-13.2.0
 25) PyZMQ/25.1.2-GCCcore-13.2.0
 26) tornado/6.4-GCCcore-13.2.0
 27) BeautifulSoup/4.12.2-GCCcore-13.2.0
 28) jupyter-server/2.14.0-GCCcore-13.2.0
 29) JupyterLab/4.2.0-GCCcore-13.2.0
 30) libxslt/1.1.38-GCCcore-13.2.0
 31) lxml/4.9.3-GCCcore-13.2.0
 32) jedi/0.19.1-GCCcore-13.2.0
 33) IPython/8.17.2-GCCcore-13.2.0
 34) JupyterNotebook/7.2.0-GCCcore-13.2.0
 35) GCCcore/9.3.0
 36) zlib/1.2.11-GCCcore-9.3.0
 37) binutils/2.34-GCCcore-9.3.0
 38) bzip2/1.0.8-GCCcore-9.3.0
 39) ncurses/6.2-GCCcore-9.3.0
 40) libreadline/8.0-GCCcore-9.3.0
 41) Tcl/8.6.10-GCCcore-9.3.0
 42) SQLite/3.31.1-GCCcore-9.3.0
 43) GMP/6.2.0-GCCcore-9.3.0
 44) libffi/3.3-GCCcore-9.3.0

  Where:
   S:  Module is Sticky, requires --force to unload or purge

 

The ml -module_name command is a fundamental LMOD operation that removes a previously loaded module from your environment. This command is part of the Environment Modules system, which manages software packages and their dependencies in high-performance computing environments.

### Model swap

swap a specific module for another one (especially useful to switch between different versions of the same program)

%%bash

ml list
module switch OpenMPI/4.1.6-GCC-13.2.0 OpenMPI/5.0.5-NVHPC-24.3-CUDA-12.3.0
ml list
Currently Loaded Modules:
  1) XALT/3.0.2                                (S)
  2) GCCcore/13.2.0
  3) zlib/1.2.13-GCCcore-13.2.0
  4) binutils/2.40-GCCcore-13.2.0
  5) GCC/13.2.0
  6) numactl/2.0.16-GCCcore-13.2.0
  7) XZ/5.4.4-GCCcore-13.2.0
  8) libxml2/2.11.5-GCCcore-13.2.0
  9) libpciaccess/0.17-GCCcore-13.2.0
 10) hwloc/2.9.2-GCCcore-13.2.0
 11) libevent/2.1.12-GCCcore-13.2.0
 12) UCX/1.15.0-GCCcore-13.2.0
 13) libfabric/1.19.0-GCCcore-13.2.0
 14) PMIx/4.2.6-GCCcore-13.2.0
 15) UCC/1.2.0-GCCcore-13.2.0
 16) OpenMPI/4.1.6-GCC-13.2.0
 17) Julia/1.10.0-linux-x86_64
 18) bzip2/1.0.8-GCCcore-13.2.0
 19) ncurses/6.4-GCCcore-13.2.0
 20) libreadline/8.2-GCCcore-13.2.0
 21) Tcl/8.6.13-GCCcore-13.2.0
 22) SQLite/3.43.1-GCCcore-13.2.0
 23) libffi/3.4.4-GCCcore-13.2.0
 24) Python/3.11.5-GCCcore-13.2.0
 25) libyaml/0.2.5-GCCcore-13.2.0
 26) cffi/1.15.1-GCCcore-13.2.0
 27) cryptography/41.0.5-GCCcore-13.2.0
 28) virtualenv/20.24.6-GCCcore-13.2.0
 29) Python-bundle-PyPI/2023.10-GCCcore-13.2.0
 30) PyYAML/6.0.1-GCCcore-13.2.0
 31) OpenPGM/5.2.122-GCCcore-13.2.0
 32) libsodium/1.0.19-GCCcore-13.2.0
 33) util-linux/2.39-GCCcore-13.2.0
 34) ZeroMQ/4.3.5-GCCcore-13.2.0
 35) PyZMQ/25.1.2-GCCcore-13.2.0
 36) tornado/6.4-GCCcore-13.2.0
 37) BeautifulSoup/4.12.2-GCCcore-13.2.0
 38) jupyter-server/2.14.0-GCCcore-13.2.0
 39) JupyterLab/4.2.0-GCCcore-13.2.0
 40) libxslt/1.1.38-GCCcore-13.2.0
 41) lxml/4.9.3-GCCcore-13.2.0
 42) jedi/0.19.1-GCCcore-13.2.0
 43) IPython/8.17.2-GCCcore-13.2.0
 44) JupyterNotebook/7.2.0-GCCcore-13.2.0

  Where:
   S:  Module is Sticky, requires --force to unload or purge

 


The following have been reloaded with a version change:
  1) GCCcore/13.2.0 => GCCcore/12.2.0
  2) OpenMPI/4.1.6-GCC-13.2.0 => OpenMPI/5.0.5-NVHPC-24.3-CUDA-12.3.0
  3) PMIx/4.2.6-GCCcore-13.2.0 => PMIx/5.0.2-GCCcore-12.2.0
  4) UCC/1.2.0-GCCcore-13.2.0 => UCC/1.3.0-GCCcore-12.2.0
  5) UCX/1.15.0-GCCcore-13.2.0 => UCX/1.16.0-GCCcore-12.2.0
  6) XZ/5.4.4-GCCcore-13.2.0 => XZ/5.2.7-GCCcore-12.2.0
  7) binutils/2.40-GCCcore-13.2.0 => binutils/2.39-GCCcore-12.2.0
  8) hwloc/2.9.2-GCCcore-13.2.0 => hwloc/2.8.0-GCCcore-12.2.0
  9) libevent/2.1.12-GCCcore-13.2.0 => libevent/2.1.12-GCCcore-12.2.0
 10) libfabric/1.19.0-GCCcore-13.2.0 => libfabric/1.16.1-GCCcore-12.2.0
 11) libpciaccess/0.17-GCCcore-13.2.0 => libpciaccess/0.17-GCCcore-12.2.0
 12) libxml2/2.11.5-GCCcore-13.2.0 => libxml2/2.10.3-GCCcore-12.2.0
 13) numactl/2.0.16-GCCcore-13.2.0 => numactl/2.0.16-GCCcore-12.2.0
 14) zlib/1.2.13-GCCcore-13.2.0 => zlib/1.2.12-GCCcore-12.2.0


Currently Loaded Modules:
  1) XALT/3.0.2                                 (S)
  2) GCC/13.2.0
  3) Julia/1.10.0-linux-x86_64
  4) bzip2/1.0.8-GCCcore-13.2.0
  5) ncurses/6.4-GCCcore-13.2.0
  6) libreadline/8.2-GCCcore-13.2.0
  7) Tcl/8.6.13-GCCcore-13.2.0
  8) SQLite/3.43.1-GCCcore-13.2.0
  9) libffi/3.4.4-GCCcore-13.2.0
 10) Python/3.11.5-GCCcore-13.2.0
 11) libyaml/0.2.5-GCCcore-13.2.0
 12) cffi/1.15.1-GCCcore-13.2.0
 13) cryptography/41.0.5-GCCcore-13.2.0
 14) virtualenv/20.24.6-GCCcore-13.2.0
 15) Python-bundle-PyPI/2023.10-GCCcore-13.2.0
 16) PyYAML/6.0.1-GCCcore-13.2.0
 17) OpenPGM/5.2.122-GCCcore-13.2.0
 18) libsodium/1.0.19-GCCcore-13.2.0
 19) util-linux/2.39-GCCcore-13.2.0
 20) ZeroMQ/4.3.5-GCCcore-13.2.0
 21) PyZMQ/25.1.2-GCCcore-13.2.0
 22) tornado/6.4-GCCcore-13.2.0
 23) BeautifulSoup/4.12.2-GCCcore-13.2.0
 24) jupyter-server/2.14.0-GCCcore-13.2.0
 25) JupyterLab/4.2.0-GCCcore-13.2.0
 26) libxslt/1.1.38-GCCcore-13.2.0
 27) lxml/4.9.3-GCCcore-13.2.0
 28) jedi/0.19.1-GCCcore-13.2.0
 29) IPython/8.17.2-GCCcore-13.2.0
 30) JupyterNotebook/7.2.0-GCCcore-13.2.0
 31) GCCcore/12.2.0
 32) zlib/1.2.12-GCCcore-12.2.0
 33) binutils/2.39-GCCcore-12.2.0
 34) numactl/2.0.16-GCCcore-12.2.0
 35) CUDA/12.3.0
 36) NVHPC/24.3-CUDA-12.3.0
 37) XZ/5.2.7-GCCcore-12.2.0
 38) libxml2/2.10.3-GCCcore-12.2.0
 39) libpciaccess/0.17-GCCcore-12.2.0
 40) hwloc/2.8.0-GCCcore-12.2.0
 41) libevent/2.1.12-GCCcore-12.2.0
 42) UCX/1.16.0-GCCcore-12.2.0
 43) GDRCopy/2.4.1-GCCcore-12.2.0
 44) UCX-CUDA/1.16.0-GCCcore-12.2.0-CUDA-12.3.0
 45) libfabric/1.16.1-GCCcore-12.2.0
 46) PMIx/5.0.2-GCCcore-12.2.0
 47) UCC/1.3.0-GCCcore-12.2.0
 48) NCCL/2.21.5-GCCcore-12.2.0-CUDA-12.3.0
 49) UCC-CUDA/1.3.0-GCCcore-12.2.0-CUDA-12.3.0
 50) PRRTE/3.0.5-GCCcore-12.2.0
 51) OpenMPI/5.0.5-NVHPC-24.3-CUDA-12.3.0

  Where:
   S:  Module is Sticky, requires --force to unload or purge

 
  • load just adds a module. If an older version is already loaded, it might cause problems unless you unload manually first.

  • switch removes the old version and loads the new version in one step — safer and cleaner.

To display information about the GCC module

%%bash
module show GCC
----------------------------------------------------------------------------
   /apps/modules/compiler/GCC/13.2.0.lua:
----------------------------------------------------------------------------
help([[
Description
===========
The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, Java, and Ada,
 as well as libraries for these languages (libstdc++, libgcj,...).


More information
================
 - Homepage: https://gcc.gnu.org/
]])
whatis("Description: The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, Java, and Ada,
 as well as libraries for these languages (libstdc++, libgcj,...).")
whatis("Homepage: https://gcc.gnu.org/")
whatis("URL: https://gcc.gnu.org/")
conflict("GCC")
setenv("EBROOTGCC","/apps/all/GCCcore/13.2.0")
setenv("EBVERSIONGCC","13.2.0")
setenv("EBDEVELGCC","/apps/all/GCC/13.2.0/easybuild/GCC-13.2.0-easybuild-devel")
setenv("DEBUGFLAGS","-O0 -g")
setenv("CC","gcc")
setenv("CXX","g++")
setenv("F77","gfortran")
setenv("F90","gfortran")
setenv("FC","gfortran")
setenv("OPTFLAGS","-O3 -fPIC -march=znver2")
setenv("CXXFLAGS","-O3 -fPIC -march=znver2")
setenv("CFLAGS","-O3 -fPIC -march=znver2")
setenv("FCFLAGS","-O3 -fPIC -march=znver2")
setenv("FFLAGS","-O3 -fPIC -march=znver2")

The ml spider GCC/14.2.0 command provides detailed information about the GCC 14.2.0 module available on your system.

%%bash
#searches (case-insensitive) for gcc in all available modules
ml spider GCC/14.2.0
----------------------------------------------------------------------------
  GCC: GCC/14.2.0
----------------------------------------------------------------------------
    Description:
      The GNU Compiler Collection includes front ends for C, C++,
      Objective-C, Fortran, Java, and Ada, as well as libraries for these
      languages (libstdc++, libgcj,...).


    This module can be loaded directly: module load GCC/14.2.0

    Help:
      Description
      ===========
      The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, Java, and Ada,
       as well as libraries for these languages (libstdc++, libgcj,...).
      
      
      More information
      ================
       - Homepage: https://gcc.gnu.org/
      


 

GCC (GNU Compiler Collection) 14.2.0 is a version of the GCC toolchain, which includes compilers for C, C++, Fortran, and other programming languages. It is a key tool for software development, providing optimizations, bug fixes, and feature updates to improve performance and support newer standards of various programming languages. Version 14.2.0 introduces improvements in compilation, error diagnostics, and support for newer hardware architectures.

Conflicting Modules

It is important to note that only modules that are compatible with each other can be loaded together. In particular, modules must be installed either with the same toolchain as the modules that are already loaded, or with a compatible (sub)toolchain.

For example, once you have loaded one or more modules that were installed with the intel/2017.00 toolchain, all other modules that you load should have been installed with the same toolchain.

In addition, only one single version of each software package can be loaded at a particular time. For example, once you have the Python/3.5.2-intel-2017.00 module loaded, you cannot load a different version of Python in the same session/job script, neither directly, nor indirectly as a dependency of another module you want to load.

Resetting by Unloading All Modules

To reset your environment back to a clean state, you can use ml purge or ml purge –force:

%%bash
ml list
ml purge --force # completely removes all loaded modules 
ml  list
#No modules loaded
Currently Loaded Modules:
  1) XALT/3.0.2                                (S)
  2) GCCcore/13.2.0
  3) zlib/1.2.13-GCCcore-13.2.0
  4) binutils/2.40-GCCcore-13.2.0
  5) GCC/13.2.0
  6) numactl/2.0.16-GCCcore-13.2.0
  7) XZ/5.4.4-GCCcore-13.2.0
  8) libxml2/2.11.5-GCCcore-13.2.0
  9) libpciaccess/0.17-GCCcore-13.2.0
 10) hwloc/2.9.2-GCCcore-13.2.0
 11) libevent/2.1.12-GCCcore-13.2.0
 12) UCX/1.15.0-GCCcore-13.2.0
 13) libfabric/1.19.0-GCCcore-13.2.0
 14) PMIx/4.2.6-GCCcore-13.2.0
 15) UCC/1.2.0-GCCcore-13.2.0
 16) OpenMPI/4.1.6-GCC-13.2.0
 17) Julia/1.10.0-linux-x86_64
 18) bzip2/1.0.8-GCCcore-13.2.0
 19) ncurses/6.4-GCCcore-13.2.0
 20) libreadline/8.2-GCCcore-13.2.0
 21) Tcl/8.6.13-GCCcore-13.2.0
 22) SQLite/3.43.1-GCCcore-13.2.0
 23) libffi/3.4.4-GCCcore-13.2.0
 24) Python/3.11.5-GCCcore-13.2.0
 25) libyaml/0.2.5-GCCcore-13.2.0
 26) cffi/1.15.1-GCCcore-13.2.0
 27) cryptography/41.0.5-GCCcore-13.2.0
 28) virtualenv/20.24.6-GCCcore-13.2.0
 29) Python-bundle-PyPI/2023.10-GCCcore-13.2.0
 30) PyYAML/6.0.1-GCCcore-13.2.0
 31) OpenPGM/5.2.122-GCCcore-13.2.0
 32) libsodium/1.0.19-GCCcore-13.2.0
 33) util-linux/2.39-GCCcore-13.2.0
 34) ZeroMQ/4.3.5-GCCcore-13.2.0
 35) PyZMQ/25.1.2-GCCcore-13.2.0
 36) tornado/6.4-GCCcore-13.2.0
 37) BeautifulSoup/4.12.2-GCCcore-13.2.0
 38) jupyter-server/2.14.0-GCCcore-13.2.0
 39) JupyterLab/4.2.0-GCCcore-13.2.0
 40) libxslt/1.1.38-GCCcore-13.2.0
 41) lxml/4.9.3-GCCcore-13.2.0
 42) jedi/0.19.1-GCCcore-13.2.0
 43) IPython/8.17.2-GCCcore-13.2.0
 44) JupyterNotebook/7.2.0-GCCcore-13.2.0

  Where:
   S:  Module is Sticky, requires --force to unload or purge

 

The following modules were not unloaded:
  (Use "module --force purge" to unload all):

  1) XALT/3.0.2

Currently Loaded Modules:
  1) XALT/3.0.2 (S)

  Where:
   S:  Module is Sticky, requires --force to unload or purge

 

In most HPC environments where XALT (eXtended Application Linking Technology) is installed — especially something like XALT/3.0.2 — it cannot easily be unloaded

The module system (e.g., Lmod, Environment Modules) allows administrators to mark certain modules as sticky or immutable, meaning normal users cannot unload them.

Module Collections

If you have a set of modules that you need to load often, you can save these in a collection (only works with Lmod).

First, load all the modules you need, for example:

%%bash
ml purge --force
ml Python/3.12.3-GCCcore-13.3.0
ml CUDA/12.4.0
#Now store them in a collection using ml save:
ml save hpc-modules
ml savelist
ml list
The following modules were not unloaded:
  (Use "module --force purge" to unload all):

  1) XALT/3.0.2
Saved current collection of modules to: "hpc-modules"

Named collection list :
  1) hpc-modules

Currently Loaded Modules:
  1) XALT/3.0.2                     (S)   8) Tcl/8.6.14-GCCcore-13.3.0
  2) GCCcore/13.3.0                       9) SQLite/3.45.3-GCCcore-13.3.0
  3) zlib/1.3.1-GCCcore-13.3.0           10) XZ/5.4.5-GCCcore-13.3.0
  4) binutils/2.42-GCCcore-13.3.0        11) libffi/3.4.5-GCCcore-13.3.0
  5) bzip2/1.0.8-GCCcore-13.3.0          12) OpenSSL/3
  6) ncurses/6.5-GCCcore-13.3.0          13) Python/3.12.3-GCCcore-13.3.0
  7) libreadline/8.2-GCCcore-13.3.0      14) CUDA/12.4.0

  Where:
   S:  Module is Sticky, requires --force to unload or purge

 

for example in a job script, you can reload all these modules with ml restore:

%%bash
ml purge --force
ml restore hpc-modules
ml savelist # get a list of all saved collections:
ml list
The following modules were not unloaded:
  (Use "module --force purge" to unload all):

  1) XALT/3.0.2
Restoring modules from user's hpc-modules
Named collection list :
  1) hpc-modules

Currently Loaded Modules:
  1) XALT/3.0.2                     (S)   8) Tcl/8.6.14-GCCcore-13.3.0
  2) GCCcore/13.3.0                       9) SQLite/3.45.3-GCCcore-13.3.0
  3) zlib/1.3.1-GCCcore-13.3.0           10) XZ/5.4.5-GCCcore-13.3.0
  4) binutils/2.42-GCCcore-13.3.0        11) libffi/3.4.5-GCCcore-13.3.0
  5) bzip2/1.0.8-GCCcore-13.3.0          12) OpenSSL/3
  6) ncurses/6.5-GCCcore-13.3.0          13) Python/3.12.3-GCCcore-13.3.0
  7) libreadline/8.2-GCCcore-13.3.0      14) CUDA/12.4.0

  Where:
   S:  Module is Sticky, requires --force to unload or purge