Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Environment Modules

The HPC does not rely on OS distro’s packages the OS distribution's package repositories for the software as the package is limited to one single version only. The , as they typically provide only a single version of each package. Instead, the HPC employs Environment Modules for managing to manage packaging with support for multiple version supportversions. To setup to use moduleset up the use of modules, export the following variable in the your .bashrc file (remember to source the file again):

Code Block
MODULEPATH=/share/apps/Modules/noarch/:/share/apps/Modules/linux-debian12-zen3 

Then you can To explore what packages are available try module avail, it will list all the installed software. To find out a specific package, try:

Code Block
$ module avail llvm
-------------------------------------------------------------------------------------------- /share/apps/Modules/linux-debian12-zen3 --------------------------------------------------------------------------------------------
llvm/16.0.6-gcc-12.2.0-re62fk5  llvm/18.1.8-gcc-12.2.0-mx7panm

Key:
modulepath

$ module avail cuda
-------------------------------------------------------------------------------------------- /share/apps/Modules/linux-debian12-zen3 --------------------------------------------------------------------------------------------
cuda/12.5.1-gcc-12.2.0-tk2uq2c

Key:
modulepath

To load a module (make sure to the desired version is provided):

Code Block
$ module load llvm/18.1.8-gcc-12.2.0-mx7panm
Loading llvm/18.1.8-gcc-12.2.0-mx7panm
  Loading requirement: glibc/2.36-gcc-12.2.0-4jbapu4 gcc-runtime/12.2.0-gcc-12.2.0-ujkkx2r zlib/1.3.1-gcc-12.2.0-62cb2vq zstd/1.5.6-gcc-12.2.0-ihynyhi binutils/2.42-gcc-12.2.0-h5uryxy libpciaccess/0.17-gcc-12.2.0-x4no44r
    xz/5.4.6-gcc-12.2.0-bi4mbkf libxml2/2.10.3-gcc-12.2.0-j4po5v7 ncurses/6.5-gcc-12.2.0-yh57hvp hwloc/2.9.3-gcc-12.2.0-dmfv7ll libedit/3.1-20230828-gcc-12.2.0-vtr2gfz libffi/3.4.6-gcc-12.2.0-li2rwog
    nghttp2/1.62.0-gcc-12.2.0-wxj7b5x openssl/3.3.1-gcc-12.2.0-mbbi2oa curl/8.7.1-gcc-12.2.0-smtz4u6 readline/8.2-gcc-12.2.0-vyqw5tr unzip/6.0-gcc-12.2.0-eothgfx lua/5.3.6-gcc-12.2.0-loj6p3p pcre2/10.43-gcc-12.2.0-zqzpqjh
    swig/4.1.1-gcc-12.2.0-4zpscua

...