Skip to main content

Available Software

Contents

  1. The module command
    1. The module command
    2. Library packages
    3. Common errors
  2. Research Software Library Versions
  3. Software packages available
    1. Unclassified by field
    2. Classified by field, etc
      1. Packages related to Aeronautics
      2. Packages related to Astronomy
      3. Packages related to Biology and biological systems
      4. Packages related to Computional Fluid Dynamics
      5. Packages related to Chemistry
      6. Packages related to Computer Vision
      7. Packages related to Data Compression
      8. Packages related to specific Data Formats
      9. Packages related to various Earth sciences
      10. Packages related to various Engineering fields
      11. Packages related to Genomics and Genetics
      12. Packages related to Image and/or Video processing
      13. Packages related to Machine Learning
      14. Packages related to Material Science
      15. Packages related to Meteorology
      16. Miscellaneous Packages
      17. Packages related to Molecular Dynamics
      18. Packages related to Multiphysics
      19. Packages related to Neuroscience
      20. Packages related to Numerical Methods
      21. Packages defining a Python Module
      22. Packages for Software Development (compilers, scripting languages, etc.)
      23. Basic Utility Packages
      24. Packages related to Visualization and Graphics
    3. Available by cluster
      1. All packages available on the Zaratan cluster
  4. Packages for scripting languages
    1. Packages/modules for Python
    2. Packages/modules for R
    3. Packages/modules for Perl

The module command

A large number of software packages are available on each of the clusters, and for some of them, multiple versions of the same package. Not all of them like to co-exist with each other, so many of the packages are not available by default. You need to tell the system you want to use them with the module command.

For example, matlab is available on the HPC clusters, but only after you module load it. E.g.

login-1: matlab
matlab: Command not found.
login-1: module load matlab
login-1: module help matlab

----------- Module Specific Help for 'matlab/2014b' ---------------


    This is Matlab Release 2014b

    Releases after 2009 require Red Hat 5 or later.
    Releases after 2013 require Red Hat 6 or later.
    Matlab 2009b is the last release supported under Solaris.

    Run command 'matlab' to start up the program,
    or 'matlab -h' to see various command-line options.

    ***  To see all releases, issue the command
	module avail matlab

login-1: matlab
                              < M A T L A B >
                  Copyright 1984-2014 The MathWorks, Inc.
                   R2014b (8.4.0.150421) 64-bit (glnxa64)
                             September 15, 2014


  To get started, type one of these: helpwin, helpdesk, or demo.
  For product information, visit www.mathworks.com.

>> 

You can use the module help and module whatis commands before (or without) loading the package.

The module command

The module command associates a tag with the various packages. It has a hierarchical nature, so we have tags like matlab/2013b and matlab/2011a in addition to plain old matlab. The former specify a specific version of matlab, whereas the latter will enable the default version of matlab.

WARNING

With the roleout of a new software library with the RHEL8 upgrade of the Deepthought2 HPC cluster, we are no longer keeping the "default" versions of software packages fixed over long periods of time. Instead, if you do not provide a version in your "module load" command, you will almost always get the latest installed version compatible with other modules you have loaded. (There will be rare and brief exceptions if we find problems in the latest version of a package). This is a change from the behavior of many packages on the RHEL6 version of Deepthought2.

For reproducibility over time, it is strongly recommended that in job submission batch scripts you provide the full version specification for any packages for which you care about the version number.

For many packages, the tag is basically just the base name of the package, followed by a slash (/) and a version number. E.g., the examples matlab/2013b and matlab/2011a refer to versions 2013b and 2011a, respectively, of matlab. You can also just use matlab as the tag when e.g. loading a module, in which case you will get one of the versions (usually the latest, sometimes we pin to an earlier version if the newest version is still being tested).

Many packages compiled from source will have different builds depending on what CPU microarchitecture they were compiled for. Running a code compiled for a more modern CPU than you are currently using will likely result in the code crashing; running a code compiled for a less modern CPU will generally work, but you might lose some of the optimizations available on the newer chip. Generally, these packages will have two equivalent module tags, one of the form "foo/VERSION/ARCHITECTURE" and one of the form "foo/ARCHITECTURE/VERSION"; both forms load foo version VERSION built for architecture ARCHITECTURE. The module load command will attempt to load the build for the most advanced architecture compatible with the CPU you are running on. If you omit the version, it will look for the latest version built for the most advanced CPU architecture compatible with the CPU you are running on.

Some packages are fussy about the compiler and/or MPI libraries they are used with. This is particularly true of libraries which have fortran90 and/or C++ components; some examples are openmpi, hdf5, and netcdf. In these cases, the package will again have multiple module tags referring to the same build of the software. The first starts like the simple case, with the base name of the package followed by the version of the package, but to this is appended the other dependencies (like compiler family and version, and perhaps MPI library family and version, etc.). For example, one tag for version 1.8.13 of hdf5, built with version 4.8.1 of the GNU compiler suite and version 1.8.1 of , with shared linkage would be:

hdf5/1.8.13/gnu/4.8.1/openmpi/1.8.1/shared  

There is also an alternative form giving the compiler, MPI library, and linkage portions of the tag immediately after the base package name, and ending with the version of the package, e.g.

hdf5/gnu/4.8.1/openmpi/1.8.1/shared/1.8.13

Both of these tags do exactly the same thing, and set up exactly the same build of hdf5, when loaded. You can use either.

The advantage of the module command is that you generally do NOT need to give these long tag names, but can leave off components on the right and it will try to do the right thing. In particular, if you try loading just the base package name, e.g. module load hdf5, the system will determine if you have previously loaded a compiler and/or MPI library. If so, then the system will see if there are any builds of any version of the package matching the compiler and MPI library versions you previously loaded, and if one is found load the build for the most recent version that matches. If no matching build is found, and error will be displayed and no module loaded.

The following except gives an example of this:

login-2:> module purge 
login-2:> module list 
No Modulefiles Currently Loaded.
login-2:> module load gcc/4.8.1
login-2:> module load openmpi/1.8.1
login-2:> module load hdf5
login-2:> module list
Currently Loaded Modulefiles:
  1) gcc/4.8.1(default)
  2) openmpi/1.8.1/gnu/4.8.1
  3) hdf5/gnu/4.8.1/openmpi/1.8.1/shared/1.8.13
login-2:> 
login-2:> module purge
login-2:> module list
No Modulefiles Currently Loaded.
login-2:> module load intel/2016
login-2:> module load openmpi/1.10.2
login-2:> module load hdf5
login-2:> module list
Currently Loaded Modulefiles:
  1) ofed/3.12(default)
  2) intel/2016.3.210(default)
  3) openmpi/1.10.2/intel/2016.3.210
  4) hdf5/intel/2016.3.210/openmpi/1.10.2/shared/1.10.0
login-2:> 
login-2:> module purge
login-2:> module list
No Modulefiles Currently Loaded.
login-2:> module load hdf5/1.8.15p1/sunstudio/12.4/openmpi/1.8.6/shared
login-2:> module list
Currently Loaded Modulefiles:
  1) sunstudio/12.4(default)
  2) openmpi/1.8.6/sunstudio/12.4
  3) hdf5/1.8.15p1/sunstudio/12.4/openmpi/1.8.6/shared

We start by issuing a module purge command to delete any previously loaded modules (in general, you should use this with caution. If you do use it, you should immediately load the modules hpcc/deepthought or hpcc/deepthought2, as appropriate for the cluster you are on, and slurm. These are the default modules on the Deepthought HPC clusters and things might not work properly without them). We then do a module list to confirm that there are no modules loaded. We then load a specific version of the gcc compiler (4.8.1) and the openmpi libraries (1.8.1) and then ask the system to load the best hdf5 module. We then list what was loaded, and note that the system loaded an openmpi build (version 1.8.1) for the compiler we loaded, and a hdf5 version (1.8.13) for the previously loaded compiler and MPI library.

In the second example above, we load the 2016 version of the intel compiler suite, and the 1.10.2 version of openmpi, and when we issue the simple module load hdf5, this time it loads hdf5 version 1.10.0 built for that compiler and openmpi library. (Note also that the openmpi library loaded was also built for the correct compiler.)

In the final example above, we do not explicitly load any compiler or MPI library, but instead give a full path the the hdf5 module, e.g. hdf5/1.8.15p1/sunstudio/12.4/openmpi/1.8.6/shared. In this case, we note that not only was the requested hdf5 module loaded, but we also loaded the corresponding compiler (sunstudio/12.4) and openmpi (openmpi/1.8.6) modules as well.

In summary, in almost all cases, you need only specify a portion of the tag, and the system will try to default it properly. Generally, you should load the compiler you wish to use first (or do not load anything if you want to use the default gcc 4.6.1 compiler) followed by the MPI library if needed. This will allow the system to pick the correct build of libraries which depend on such. Alternatively, if you specify the full path to a package which depends on a specific compiler and MPI library, these will be loaded for you if not already loaded. In general, if the package has dependencies, they will be loaded automatically for you if needed.

However, if you want reproducable results, it is generally recommended that you fully specify version numbers when loading modules in your job scripts. I.e., the latest version of the foo package might be 1.5 when you run your job today, but if you run it again a month from today, the latest version might by 1.7 at that time, and that could change the results unexpectedly if your script merely did a module load foo. If you wish to ensure the same version is always used, specifying the version number in the module load command is advised, e.g. module load foo/1.5; this way you will get the same version of the foo package both today and a month from now. But if you always prefer to use the latest package available, then in general you should leave the version numbers off.

WARNING
NOTE: If you are submitting a job using a bourne style shell (e.g. sh or bash), your dot files will not be read automatically if your default shell is something else (e.g. csh or tcsh). So you will need to include a . ~/.bashrc line near the top of your script, after the #SBATCH lines but before you try to use tap or module commands.

The module command allows you to issue commands of the form module SUBCOMMAND OPTIONAL_ARGUMENT. Recognized subcommands include:

Library packages

Some packages are not so much applications as libraries; i.e. they provide libraries which your code can use, and might or might not have any binaries that you can run directly. To make use of these libraries in your code takes a little bit of work. Please see the section on compiling codes for more information on how to do this.

Common errors from module/tap commands

As stated early, not all packages co-exist nicely. This is particularly true of different versions of the same package, or related libraries (e.g. the various MPI libraries). The module command will generate an error if you try to load a package which does not play well with packages you have previously loaded; if this occurs you will need to unload the previous package and reload the new package. E.g.

login-1: module load matlab/2012b
login-1:~: module load matlab/2013b
matlab/2013b(8):ERROR:150: Module 'matlab/2013b' conflicts with the currently loaded module(s) 'matlab/2012b'
matlab/2013b(8):ERROR:102: Tcl command execution failed: source $moduledir/common
login-1: module unload matlab
login-1:~: module load matlab/2013b

Although not as user friendly as one would like, you can see that the first time I tried to load matlab/2013b it complained because matlab/2012b was already loaded. Also note that I did not need to specify the full tag to unload matlab/2012b, as there was only one matlab package loaded, so it could default it.

You can also run into similar incompatibillity problems if you mix packages (especially library packages) built for one compiler/MPI library/etc with a different compiler/MPI library/etc. For example

login-1: module avail fftw/3.3.3

------------------- /cell_root/system/common/modulefiles/sys -------------------
fftw/3.3.3/gnu/4.6.1/openmpi/1.6/shared
fftw/3.3.3/gnu/4.6.1/openmpi/1.6/static
fftw/3.3.3/gnu/4.6.1/openmpi/1.6.5/shared
fftw/3.3.3/gnu/4.6.1/openmpi/1.6.5/static
fftw/3.3.3/intel/2013.1.039/openmpi/1.6.5/shared
fftw/3.3.3/intel/2013.1.039/openmpi/1.6.5/static

login-1: module load intel/2013.1.039

login-1: module load fftw/3.3.3/gnu

***** Compiler mismatch

You have loaded compiler intel/2013.1.039
This package wants compiler gnu/4.6.1
login-1: 

In the above, we show that there are various builds of fftw/3.3.3 available. We then load the intel compiler module, and try to load a GNU compiler build of fftw/3.3.3, and get an error. That is because using a GNU build of fftw/3.3.3 with the intel compiler suite is likely not to work and cause you headaches. In general, you should not be specifying more than fftw/3.3.3 anyway, and the module command will figure out which build to load based on which compilers you already have loaded. Alternatively, you can give the full path (e.g. module load fftw/3.3.3/intel/2013.1.039/openmpi/1.6.5) and the module command will auto-load the appropriate intel compiler and openmpi module for if, if it can. If you have a conflicting module already loaded, you will still get the error.

For the most part, tap is just a wrapper around the module command for backwards compatibility, and so you will get the same errors with tap if you try to load conflicting modules. The tap command is limited, so you generally do NOT get a whole lot of choice as to which builds of packages get loaded, so it is less likely to be a problem, but it can still arise. Some packages have not been migrated from tap to module command, and these will NOT generate such errors when you tap incompatible modules. But things will probably NOT work as you expected; the incompatibility is REAL, not an artifact of the module command.

Research Software Library Versions

The Ressarch Software Library tries to present a set of packages which are generally compatible with each other (within a given tool chain). Periodically, we will do a major upgrade of the library, deprecating some older software versions and introducing some new packages and newer versions of some packages. To minimize any adverse affect from these upgrades, we can maintain several versions of the software library:

  1. production: This is the default version of the library which you see if you do not explicitly select another version. It is the production version, and is the only version which is fully supported.
  2. devel: This is the version of the library being built to replace production. As the name implies, it is still being actively developed and so is likely not as stable as the production version. Once development is finished, is will get promoted to the new version.
  3. new: This refers to the new version of the software library we are proposing to replace the current production version. We will make the new version available for some time under this tag before promoting it to production.
  4. old: This refers to the version of the software library which previously was the production version. When we promote a new version to production, we will make this tag point to the version that was replaced.

Note: although the four tags will exist, they usually will not refer to four distinct versions of the library. The command module help umd-software-library will display which tags point to which versions (which are typically given as the calendar date when we started to build out that version of the library).

You can use the command module switch umd-software-library/TAG to switch between versions of the software library, where TAG is one of production, devel, new, or old. (The "switch" subcommand of module essentially unloads any previously loaded version of the package and then loads the specified version).

Note that while we try to keep all of the packages within a given library version compatible with each other, that is not the case between library versions. It is strongly advised that you do not mix packages from different library versions --- doing such is not supported and very likely will cause problems.

The existance of and ability to select different versions of the software library is intended to facilitate the upgrade of the software library with minimal adverse impact to users. When we have a new version of the software library ready for testing (and/or ready for use by users waiting for an upgraded package), it will be made available to users under the devel tag. Once development has stabilized, it will be made available to users under the new tag as well. This will allow users to test things out and/or access the new packages they desire, without affecting any users still using the production version.

Once we believe the new version is working properly, we will announce a switch over date. On the switch over date, the production tag will point to the new software library, and old will point to the old production version. Hopefully, most users will just pick up the new builds and work without issue. Some users may need to modify their workflows due to the change in library version --- these changes should hopefully be small and minor, but if not they can revert to the old software library version until they have time to work out the issues. Note that the old version will persist only until the development cycle begins again.

List of available software packages

In this section we list the various software packages available on the UMD HPC clusters. We start with a list of all packages, unclassified by field of research, and follow with some shorter lists for various fields of research. If there is a mistake in the classification of software (e.g. a package is listed in the wrong category, or is missing from a category where it belongs), please contact systems staff so that we may correct the situation. Similarly, contact us if there is a category for software which is missing and you believe would be useful to have.

For each list, you can click on the name of the package to bring up a page with more detailed information on what versions are available on which clusters, and some basic (and sometimes not so basic) usage and help. Note that all packages, much less all versions of all packages, are not necessarily available on all clusters, so please verify that te package and/or version of the package you need is available on the cluster you intend to use.

  1. All packages (unsorted by field)
  2. Software lists classified by field of research, etc
    1. Packages related to Aeronautics
    2. Packages related to Astronomy
    3. Packages related to Biology and biological systems
    4. Packages related to Computional Fluid Dynamics
    5. Packages related to Chemistry
    6. Packages related to Computer Vision
    7. Packages related to Data Compression
    8. Packages related to specific Data Formats
    9. Packages related to various Earth sciences
    10. Packages related to various Engineering fields
    11. Packages related to Genomics and Genetics
    12. Packages related to Image and/or Video processing
    13. Packages related to Machine Learning
    14. Packages related to Material Science
    15. Packages related to Meteorology
    16. Miscellaneous Packages
    17. Packages related to Molecular Dynamics
    18. Packages related to Multiphysics
    19. Packages related to Neuroscience
    20. Packages related to Numerical Methods
    21. Packages defining a Python Module
    22. Packages for Software Development (compilers, scripting languages, etc.)
    23. Basic Utility Packages
    24. Packages related to Visualization and Graphics
  3. Software lists by cluster
    1. All packages available on the Zaratan cluster

All packages (unsorted by field)

This section list all installed research software, unsorted by field of research/category/etc.

All packages (unsorted by field)
Package Name Description Supported CPUs GPU ready?
abaqus Abaqus: Finite-element analysis/Computer-aided engineering software x86_64
adapterremoval AdapterRemoval: Tool for removing remnant adapter sequences from sequencing data icelake, x86_64, zen2
adios2 adios2: The Adapatble Input/Output System, version 2 icelake, x86_64, zen, zen2 Yes
afni afni: AFNI (Analysis of Functional NeuroImages) x86_64
alphafold alphafold: AlphaFold Protein Structure Database and Software icelake, x86_64
amber amber: Amber is a suite of biomolecular simulation programs. x86_64
amdblis amdblis: AMD Optimized BLAS libraries zen2
amdfftw amdfftw: AMD Discrete Fourier Transform library zen2 Yes
amdlibflame amdlibflame: AMD Optimized BLAS libraries zen2
amdlibm amdlibm: AMD Optimized BLAS libraries zen2
amdscalapack amdscalapack: AMD Optimized Scalable linear algebra package zen2 Yes
angsd angsd: Program for analyzing NGS data zen2
ansys ANSYS: Computer-aided engineering software x86_64
ansys-em ANSYSEM: Computer-aided engineering software for electromagnetic systems x86_64
aocc aocc: AMD Optimizing Compiler Suite x86_64
aocl-sparse aocl-sparse: Suite of Sparse Matrix algorithms zen2
armadillo armadillo: Linear algebra library for C++ icelake, x86_64, zen2 Yes
arpack-ng arpack-ng: Fortran77 subroutines designed to solve large scale eigenvalue problems icelake, x86_64, zen, zen2 Yes
bamtools BamTools: Command line toolkit for dealing with BAM files icelake, x86_64, zen, zen2
bcftools bcftools: BCFtools is a set of utilities that manipulate variant calls zen2 Yes
bedtools2 bedtools2: swiss-army knife of genomics analysis tasks zen2
binutils binutils: GNU Binary utilities icelake, x86_64, zen, zen2
blast-plus blast-plus: Basic Local Alignment Search Tool icelake, x86_64, zen, zen2
bml bml: Basic Matrix Library icelake, x86_64, zen, zen2 Yes
boost boost: free, portable C++ source libraries icelake, x86_64, zen, zen2 Yes
bowtie bowtie: ultrafast sequence aligner zen2
bowtie2 bowtie2: ultrafast sequence aligner zen2
bwa bwa: Burrows-Wheeler Aligner zen2
bzip2 bzip2: patent-free high quality data compression libraries icelake, x86_64, zen, zen2
c-blosc c-blosc: A blocking, shuffling, and loss-less compression library icelake, x86_64, zen, zen2
caffe caffe: Deep learning framework icelake, x86_64, zen, zen2
cdo cdo: Climate Data Operators zen2 Yes
cfitsio CFITSIO: Libraries for Flexible Image Transport System (FITS) data format icelake, x86_64, zen, zen2
cfour cfour: Software for quantum chemical modeling x86_64
cgal cgal: Computations Geometry Algorithms Library icelake, x86_64, zen, zen2 Yes
cgns cgns: CFD General notation system icelake, x86_64, zen2 Yes
charm4py Charm4py: distributed/parallel programing framework for Python zen, zen2 Yes
charmm charmm: Chemistry at HARvard Macromolecular Mechanics. zen2 Yes
charmpp Charm++: parallel programming framework in C++ icelake, x86_64, zen, zen2
cmake cmake: cross-platform, open-source build system icelake, x86_64, zen, zen2
cmdstan CmdStan: command line interface to Stan icelake, x86_64, zen2 Yes
cminpack cminpack: Library for solving nonlinear equations and nonlinear least squares problems icelake, x86_64, zen, zen2
colmap COLMAP: Image-based 3D reconstruction pipeline zen2 Yes
comsol Comsol: General-purpose simulation software x86_64
coreutils-progress-viewer coreutils-progress-viewer: command line tool for monitoring progress of core utilities zen2
cosma COSMA: Distributed Communication-Optimal Matrix-Matrix Multiplication Library icelake, x86_64, zen2 Yes
cp2k CP2K: quantum chemistry and solid state physics package zen2
cube cube: Performance report explorer for Scalasca and Score-P zen2
cubelib cubelib: C++ library and tools for cube zen2
cubew cubew: High performance C writer library for cube zen2
cuda cuda: parallel computing platform/programming model for NVIDIA GPUs icelake, x86_64, zen, zen2
cuda-compatibility cuda-compatibility: CUDA Toolkit Compatibility package x86_64
cudnn cudnn: Library of deep learning/neural network primitives for GPUs icelake, zen, zen2 Yes
cupy cupy: a Python array library accelerated with NVIDIA CUDA zen2 Yes
curl curl: command line tool for transferring data icelake, x86_64, zen, zen2
cython cython: Compiler for writing C extensions for Python icelake, x86_64, zen, zen2
dmtcp dmtcp: Distributed Multithreaded Checkpointing icelake, x86_64, zen, zen2
dplr dplr: Hypersonic Continuum CFD Code skylake_avx512, x86_64
dyninst dyninst: API for dynamic binary instrumentation icelake, zen, zen2 Yes
eccodes eccodes: Libraries for encoding/decoding weather related data formats icelake, x86_64, zen, zen2 Yes
edem EDEM: Simulation using Discrete Element Method x86_64
eigen eigen: C++ template library for matrix and vector operations, icelake, x86_64, zen, zen2
elpa elpa: Eigenvalue solvers for Petaflop Applications zen2
embree Embree: High performance ray tracing kernels x86_64
envi ENVI: ENVI software for processing and analyzing geospatial data x86_64
esmf esmf: The Earth System Modeling Framework icelake, x86_64, zen, zen2 Yes
exonerate Exonerate: generic tool for pairwise sequence comparison zen2
fastqc fastqc: quality control tool for high throughput sequence data. zen2
fds FDS: Fire Dynamics Simulator x86_64
ffmpeg FFmpeg: icelake, x86_64, zen, zen2
fftw fftw: Discrete Fourier Transform library icelake, x86_64, zen, zen2 Yes
freebayes freebayes: Haplotype-based variant detector zen2
freesurfer freesurfer: FreeSurfer is a brain imaging software package x86_64
freetype freetype: freely available software library to render fonts icelake, x86_64, zen, zen2
fribidi FriBidi: Unicode Bidirectional Algorithm implementation icelake, x86_64, zen, zen2
fun3d fun3d: FUN3d (Fully Unstructured Navier-Stokes) CFD suite skylake_avx512
gatk GATK: Genome Analysis Tool Kit icelake, x86_64, zen2
gaussian Gaussian: Software for electronic structure modeling x86_64
gcc gcc: GNU Compiler Suite x86_64 Yes
gdal gdal: Geospatial Data Abstraction Library icelake, zen2 Yes
geos geos: C++ Geometry Engine Open Source icelake, x86_64, zen2
git-lfs git-lfs: command line tool for managing cloud storage icelake, x86_64, zen2
gloo gloo: Gloo collective communications package icelake, zen2 Yes
gmp gmp: GNU Multiple Precision Arithmetic Library icelake, x86_64, zen, zen2
gnuplot gnuplot: command-line driven graphing utility icelake, x86_64, zen, zen2
go go: Go programming language icelake, x86_64, zen2
grads grads: Grid Analysis and Display System zen2
graphviz graphviz: Graph Visualization Software icelake, x86_64, zen2 Yes
gromacs gromacs: Chemical simulation/Molecular dynamics package icelake, zen, zen2 Yes
gsl gsl: GNU Scientific Library icelake, x86_64, zen, zen2
gssha GSSHA: Gridded Surface/Subsurface Hydrologic Analysis x86_64
gurobi gurobi: Gurobi Optimizer for numerical programming x86_64
h5utils h5utils: Utilities for visualization/conversion of HDF5 data zen2 Yes
harfbuzz HarfBuzz: Text shaping library icelake, x86_64, zen, zen2
hdf-eos2 HDF-EOS2: HDF for Earth Observing System (hdf4) icelake, x86_64, zen, zen2
hdf-eos5 HDF-EOS5: HDF for Earth Observing System (hdf5) icelake, x86_64, zen2 Yes
hdf4 hdf4: Libraries for Hierarchical Data Format v4 icelake, x86_64, zen, zen2
hdf5 hdf5: Libraries for Hierarchical Data Format v5 icelake, x86_64, zen, zen2 Yes
hemocell HemoCell: Framework for simulation of blood and other dense deformable capsule suspensions zen2 Yes
hip HIP: Heterogeneous Interface for Portability (HIP) zen2 Yes
hmmer hmmer: biosequence analyser using profile hidden Markov models icelake, x86_64, zen, zen2 Yes
hpcc hpcc: Default env setting for the various clusters x86_64
hpctoolkit hpctoolkit: toolkit for performance measurement and analysis icelake, zen2 Yes
hpl hpl: High Performance Computing Linpack Benchmark icelake, x86_64, zen2 Yes
hpx hpx: C++ runtime for parallel and distributed applications zen, zen2
htslib HTSlib: Library for accessing high-throughput sequencing data formats icelake, x86_64, zen, zen2
hypre HPYRE: Scalable Linear Solvers and Multigrid Methods icelake, x86_64, zen2 Yes
icu4c icu4c: Libraries for unicode and globalization support icelake, x86_64, zen, zen2
igv igv: Integrative Genomics Viewer zen2
impute2 IMPUTE2: genotype imputatin and haplotype phasing tool icelake, x86_64, zen2
intel Intel: Intel OneAPI Classic compilers x86_64
intel-advisor intel-advisor: Intel advisor performance analysis tool zen2
intel-dal intel-dal: Intel Data Analytics Library (DAL) zen2
intel-dnn intel-dnn: Intel Deep Neural Network Library zen2
intel-dpl intel-dpl: Intel Data Parallel C++ Library (DPL) zen2
intel-inspector intel-inspector: Intel Inspector memory, thread checking and debugging tool zen2
intel-ipp intel-ipp: Intel Integrated Performance Primitives (IPP) zen2
intel-ippcp intel-ippcp: Intel Integrated Performance Primitives Cryptography (IPP Crypto) zen2
intel-mkl intel-mkl: Intel Math Kernel Library (MKL/oneMKL) icelake, x86_64, zen2 Yes
intel-mpi intel-mpi: Intel Message Passing Interface (MPI) Library zen2
intel-mpi-benchmarks intel-mpi-benchmarks: MPI benchmarks from Intel zen2 Yes
intel-tbb intel-tbb: Intel Threaded Building Blocks icelake, x86_64, zen, zen2 Yes
intel-vpl intel-vpl: Intel Video Processing Library (oneVPL) zen2
intel-vtune intel-vtune: Intel oneAPI VTune Profiler zen2
ioapi ioapi: Models-3/EDSS Input/Output Applications Programming Interface zen2 Yes
ior ior: Parallel IO benchmark icelake, x86_64, zen2 Yes
jags jags: JAGS Gibbs Sampler icelake, x86_64, zen2
jasper jasper: Library for manipulating JPEG-2000 images icelake, x86_64, zen2
jellyfish jellyfish: JELLYFISH is a tool for fast, memory-efficient counting of k-mers in DNA. icelake, x86_64, zen, zen2
json-c JSON-C: JSON library implemented in C icelake, x86_64, zen2
jsoncpp JsonCpp: JSON library implemented in C++ icelake, zen, zen2
julia julia: Julia programming language: A fresh approach to technical computing x86_64
jupyter jupyter: The Jupyter Notebook application icelake, x86_64, zen, zen2
kahip kahip: Karlsruhe High Quality Graph Partitioning Framework icelake, x86_64, zen, zen2 Yes
kallisto kallisto: Program for RNA-sequence quantification zen2
lammps lammps: LAMMPS: Large-scale Atomic/Molecular Massively Parallel Simulator icelake, zen, zen2 Yes
latte latte: Open source density functional tight binding molecular dynamics. icelake, x86_64, zen, zen2 Yes
libiconv libiconv: Functions for internationalization/character set conversion icelake, x86_64, zen, zen2
libint libint: library to evaluate molecular integrals icelake, x86_64, zen, zen2 Yes
libpng libpng: libpng is the official PNG reference library icelake, x86_64, zen, zen2
libtiff libtiff: Library for TIFF (Tag Image File Format) image format icelake, x86_64, zen, zen2
libvdwxc Libvdwxc: library for vdW-DF exchange-correlation functionals x86_64, zen, zen2 Yes
libxsmm LIBXSMM: library for specialized dense and sparse matrix operations icelake, x86_64, zen, zen2
libzmq libzmq: ZeroMQ networking/concurrency library and core API icelake, x86_64, zen, zen2
llvm llvm: LLVM collection of compiler and toolchain modules icelake, zen, zen2
lumerical Lumerical: Photonic simulation software x86_64
lz4 lz4: Lossless compression utility and library icelake, x86_64, zen, zen2
magics magics: meteorological plotting software icelake, zen2 Yes
magma magma: Matrix Algebra on GPU and Multicore Architectures icelake, zen2 Yes
magma-computer-algebra MAGMA-computer-algebra: MAGMA is a computational algebra package. x86_64_v3 Yes
materials-studio materials-studio: Materials Studio for simulating and modeling materials x86_64
mathematica Mathematica: Mathematica symbolic and computational mathematics package. x86_64
matio matio: MATLAB MAT file I/O library icelake, x86_64, zen, zen2 Yes
matlab matlab: Matlab numerical computing environment x86_64
mercurial mercurial: Mercurial source control management system icelake, x86_64, zen2
mesa mesa: Mesa is an open-source OpenGL graphics library icelake, x86_64, zen, zen2
metis metis: Metis unstructured graph partitioner icelake, x86_64, zen, zen2
mgridgen mgridgen: Multilevel Serial & Parallel Coarse Grid Construction Library icelake, x86_64, zen, zen2 Yes
mothur mothur: Bioinformatics tool for microbial ecology icelake, x86_64, zen2
mpfr mpfr: GNU Multiple-precision Floating point library icelake, x86_64, zen, zen2
mt-metis mt-metis: Metis unstructured graph partitioner icelake, x86_64, zen, zen2
mumps mumps: MUltifrontal Massively Parallel sparse direct Solver icelake, x86_64, zen, zen2 Yes
namd NAMD: Nanoscale Molecular Dynamics zen, zen2 Yes
nccl NCCL: NVIDIA Collective Communication Library icelake, zen2 Yes
ncl NCL: NCAR Command Language icelake, x86_64, zen2 Yes
nco nco: Toolkits for manipulating data in NetCDF formats icelake, x86_64, zen, zen2 Yes
ncview ncview: Viewer for NetCDF files zen2 Yes
netcdf netcdf: C Libraries for NetCDF data format icelake, x86_64, zen, zen2 Yes
netcdf-cxx netcdf-cxx: C++ Libraries for NetCDF data format icelake, x86_64, zen, zen2 Yes
netcdf-fortran netcdf-fortran: Fortran Libraries for NetCDF data format icelake, x86_64, zen, zen2 Yes
netlogo netlogo: NetLogo is a programming language and an IDE for agent-based modeling. x86_64
nvhpc nvhpc: Nvidia HPC SDK Compiler suite x86_64
nvmpi nvmpi: MPI libraries from the Nvidia HPC SDK Compiler suite x86_64
oneapi Intel: Intel OneAPI new compilers x86_64
openblas openblas: Optimized BLAS libraries icelake, x86_64, zen, zen2
opencv opencv: Open-source Computer Vision Library zen2
openfoam openfoam: Opensource C++ CFD toolbox zen, zen2 Yes
openjdk openjdk: Open-source implementation of Java icelake, x86_64, zen, zen2
openmm openmm: A high-performance toolkit for molecular simulation. icelake, zen2 Yes
openmpi openmpi: OpenMPI implementation of Message Passing Interface icelake, x86_64, zen, zen2 Yes
openstructure openstructure: Open-source computational structural biology framework zen2
orca ORCA: Ab initio quantum chemistry package x86_64
osu-micro-benchmarks osu-micro-benchmarks: Microbenchmarks for MPI icelake, x86_64, zen, zen2
parallel parallel: GNU parallel tool for executing jobs in parallel zen2
parallel-netcdf parallel-netcdf: Parallel I/O library for NetCDF file format icelake, x86_64, zen, zen2 Yes
paraview paraview: data analysis and visualization application zen, zen2
paraview-headless paraview-headless: data analysis and visualization application (headless version) zen2
pari-gp pari-gp: computer algebra system for computations in number theory zen2 Yes
parmetis parmetis: Parallel Metis icelake, x86_64, zen, zen2 Yes
parmgridgen ParMGridGen: Multilevel Serial & Parallel Coarse Grid Construction Library icelake, x86_64, zen, zen2 Yes
perl perl: Perl scripting language icelake, x86_64, zen, zen2
petsc PETSc: PETSc (Portable, Extensible Toolkit for Scientific Computation) zen2
pexsi PEXSI: electronic structure calculation based on Kohn-Sham density functional theory icelake, x86_64, zen, zen2 Yes
pfft pfft: Parallel Fast Fourier Transform library icelake, x86_64, zen, zen2 Yes
pgplot pgplot: PGPLOT Graphics Subroutine Library icelake, x86_64, zen2
picard picard: Command line tools for manipulation sequencing data zen2
plink PLINK: genome association analysis toolset zen2
plplot plplot: Cross-platform software for creating scientific plots zen2
plumed PLUMED: plugin for molecular dynamics icelake, zen, zen2 Yes
popoolation2 popoolation2: PoPoolation2 allows to compare allele frequencies for single-nucleotide polymorphisms. zen2
povray POV-Ray: Persistence of Vision Ray tracer icelake, x86_64, zen, zen2
proj proj: Generic Coordinate Transformation package icelake, zen, zen2
pyray pyray: Framework for scaling AI and Python applications zen2
python python: Python scripting language icelake, x86_64, zen2
pytorch pytorch: Open-source machine learning library icelake, zen2 Yes
qmd-progress qmd-progress: PROGRESS: Parallel, Rapid O(N) and Graph-based Recursive Electronic Structure Solver zen Yes
qt qt: cross-platform application development framework for GUIs icelake, x86_64, zen, zen2
quantum-espresso quantum-espresso: Electronic-structure calculations at the nanoscale. zen2 Yes
r r: R statistical computing scripting language icelake, x86_64, zen2
rclone Rclone: command line tool for managing cloud storage zen2
rdma-core RDMA-Core: RDMA Core userspace libraries and drivers zen2
rocky Rocky: ANSYS Rocky DEM x86_64
rust rust: Rust programming language icelake, x86_64, zen, zen2
samtools samtools: SAM (Sequence/Alignment Mapping) Tools icelake, x86_64, zen, zen2
scalapack scalapack: Scalable linear algebra package icelake, x86_64, zen, zen2 Yes
scons SCons: SCons open-source software construction tool icelake, x86_64, zen2
scorep scorep: suite for profiling, event tracing, and analysis of HPC applications zen2 Yes
scotch scotch: Package for graph and mesh partitioning, graph clustering, and sparse matrix ordering icelake, x86_64, zen, zen2 Yes
shapeit4 SHAPEIT4: estimation of haplotypes for sequencing data. icelake, x86_64, zen2 Yes
silo silo: libraries for reading/writing a variety of scientific data icelake, x86_64, zen, zen2 Yes
singularity singularity: Singularity container utilities x86_64
sirius SIRIUS: domain specific library for electronic structure calculations zen
slepc SLEPc: Scalable Library for Eigenvalue Problem Computations zen2
smokeview Smokeview: Visualization tool for FDS and CFAST output x86_64
snpeff SnpEff: Genomic variant annotation and functional effect prediction icelake, x86_64, zen2
sox sox: Sound eXchange, the Swiss Army knife of sound processing icelake, x86_64, zen2
spfft SpFFT: 3D FFT library for sparse frequency domain data icelake, x86_64, zen, zen2
spglib spglib: C library for finding and handling crystal symmetries icelake, x86_64, zen, zen2
sqlite sqlite: Library for lossy compression of multidimensional arrays icelake, x86_64, zen, zen2
stacks stacks: pipeline for building loci from short-read sequences zen2
star-ccm star-ccm: CFD based simulation software from Siemens x86_64
suite-sparse suite-sparse: Suite of Sparse Matrix algorithms icelake, x86_64, zen, zen2
superlu superlu: Sparse Linear system solver (sequential) icelake, x86_64, zen, zen2
superlu-dist superlu-dist: Sparse Linear system solver (distributed mem/MPI) icelake, x86_64, zen, zen2
superlu-mt superlu-mt: Sparse Linear system solver (multithreaded) icelake, x86_64, zen, zen2
swig swig: compiler to interface C/C++ libraries to Perl, Python, etc icelake, x86_64, zen, zen2
sz sz: Error-bounded Lossy Compressor for HPC Data icelake, x86_64, zen, zen2 Yes
tecplot360 Tecplot360: CFD visualization software x86_64
tensorflow tensorflow: Open-source software library for machine intelligence icelake, zen, zen2 Yes
toolchain/aocc aocc: AOCC Compiler Toolchains x86_64
toolchain/gcc gcc: GNU Compiler Toolchains x86_64
toolchain/intel intel: Intel Classic Compiler Toolchains x86_64
tophat tophat: Spliced read mapper for RNA-Seq x86_64
trilinos Trilinos: Solvers collection including linear, non-linear, optimization, and transient solvers zen2
udunits udunits: The UDUNITS package supports units of physical quantities. icelake, x86_64, zen, zen2
ufs-weather-model ufs-weather-model: Unified Forecast System Weather Model zen2 Yes
umd-examples/hello-umd hello-umd: Simple Hello world binary icelake, x86_64, zen, zen2 Yes
us3d us3d: Aeordynamic and Aerothermodynamic Simulations Software skylake_avx512
usearch USEARCH: Ultra-fast sequence analysis tool x86_64
vasp vasp: VASP: Vienna Ab-initio Simulation Package zen2
vcftools VCFtools: VCFtools is a set of utilities for working with VCF files zen2
virtualgl virtualgl: Toolkit to allow remote display to run OpenGL applications with full hardware acceleration icelake, x86_64, zen, zen2
visit visit: interactive, scalable, visualization, animation and analysis tool zen2 Yes
vmd VMD: Visual Molecular Dynamics x86_64
voropp Voro++: library for 3D computations of the Voronoi tessellation icelake, x86_64, zen, zen2
vtk vtk: 3D computer graphics, image processing and visualization library icelake, zen, zen2 Yes
wannier90 Wannier90: tool to calculate maximally-localized Wannier functions icelake, x86_64, zen, zen2 Yes
xerces-c xerces-c: validating XML parser in C++ icelake, x86_64, zen, zen2
xssp xssp: Secondary structure assignments for entries in the Protein Data Bank zen
xz xz: Lossless compression utility and library icelake, x86_64, zen, zen2
zfp zfp: Library for lossy compression of multidimensional arrays icelake, x86_64, zen, zen2
zlib zlib: General purpose, patent-free compression ibrary icelake, x86_64, zen, zen2
zoltan zoltan: Toolkit for parallel combinatorial algorithms icelake, x86_64, zen, zen2 Yes
zstd zstd: Fast, lossless compression algorithm icelake, x86_64, zen, zen2

Packages related to Aeronautics

This section lists various software packages related to Aeronautics, Aviation, Aerospace Sciences and related fields (Astronautics, Hypersonics, Aerothermodynamics, etc.)

Packages related to Aeronautics
Package Name Description Supported CPUs GPU ready?
dplr dplr: Hypersonic Continuum CFD Code skylake_avx512, x86_64
fun3d fun3d: FUN3d (Fully Unstructured Navier-Stokes) CFD suite skylake_avx512
us3d us3d: Aeordynamic and Aerothermodynamic Simulations Software skylake_avx512

Packages related to Astronomy

This section lists various software packages related to Astronomy and related fields.

Packages related to Astronomy
Package Name Description Supported CPUs GPU ready?
cfitsio CFITSIO: Libraries for Flexible Image Transport System (FITS) data format icelake, x86_64, zen, zen2

Packages related to Biology and biological systems

This section lists various software packages related to Biology, Bioinformatics and related fields. See also Genomics.

Packages related to Biology and biological systems
Package Name Description Supported CPUs GPU ready?
hemocell HemoCell: Framework for simulation of blood and other dense deformable capsule suspensions zen2 Yes
openstructure openstructure: Open-source computational structural biology framework zen2

Packages related to Computional Fluid Dynamics

This section lists various software packages related to Computational Fluid Dynamics (CFD).

Packages related to Computional Fluid Dynamics
Package Name Description Supported CPUs GPU ready?
cgns cgns: CFD General notation system icelake, x86_64, zen2 Yes
dplr dplr: Hypersonic Continuum CFD Code skylake_avx512, x86_64
fds FDS: Fire Dynamics Simulator x86_64
fun3d fun3d: FUN3d (Fully Unstructured Navier-Stokes) CFD suite skylake_avx512
openfoam openfoam: Opensource C++ CFD toolbox zen, zen2 Yes
smokeview Smokeview: Visualization tool for FDS and CFAST output x86_64
tecplot360 Tecplot360: CFD visualization software x86_64

Packages related to Chemistry

This section lists various software packages related to Chemistry, Computational Chemistry, Quantum Chemistry, etc. See also MolecularDynamics and MaterialScience.

Packages related to Chemistry
Package Name Description Supported CPUs GPU ready?
cfour cfour: Software for quantum chemical modeling x86_64
charmm charmm: Chemistry at HARvard Macromolecular Mechanics. zen2 Yes
cp2k CP2K: quantum chemistry and solid state physics package zen2
gaussian Gaussian: Software for electronic structure modeling x86_64
gromacs gromacs: Chemical simulation/Molecular dynamics package icelake, zen, zen2 Yes
lammps lammps: LAMMPS: Large-scale Atomic/Molecular Massively Parallel Simulator icelake, zen, zen2 Yes
libint libint: library to evaluate molecular integrals icelake, x86_64, zen, zen2 Yes
namd NAMD: Nanoscale Molecular Dynamics zen, zen2 Yes
openmm openmm: A high-performance toolkit for molecular simulation. icelake, zen2 Yes
orca ORCA: Ab initio quantum chemistry package x86_64
plumed PLUMED: plugin for molecular dynamics icelake, zen, zen2 Yes
qmd-progress qmd-progress: PROGRESS: Parallel, Rapid O(N) and Graph-based Recursive Electronic Structure Solver zen Yes
sirius SIRIUS: domain specific library for electronic structure calculations zen
vasp vasp: VASP: Vienna Ab-initio Simulation Package zen2
vmd VMD: Visual Molecular Dynamics x86_64

Packages related to Computer Vision

This section lists various software packages related to Computer Vision and related fields. You might also want to look at the section on packages related to Machine Learning.

Packages related to Computer Vision
Package Name Description Supported CPUs GPU ready?
caffe caffe: Deep learning framework icelake, x86_64, zen, zen2
opencv opencv: Open-source Computer Vision Library zen2
pytorch pytorch: Open-source machine learning library icelake, zen2 Yes
tensorflow tensorflow: Open-source software library for machine intelligence icelake, zen, zen2 Yes

Packages related to Data Compression

This section lists various software packages related to Data Compression. Basically libraries and binaries for compressing and uncompressing data to/from various compressed formats and/or compression algorithms.

Packages related to Data Compression
Package Name Description Supported CPUs GPU ready?
bzip2 bzip2: patent-free high quality data compression libraries icelake, x86_64, zen, zen2
c-blosc c-blosc: A blocking, shuffling, and loss-less compression library icelake, x86_64, zen, zen2
lz4 lz4: Lossless compression utility and library icelake, x86_64, zen, zen2
sz sz: Error-bounded Lossy Compressor for HPC Data icelake, x86_64, zen, zen2 Yes
xerces-c xerces-c: validating XML parser in C++ icelake, x86_64, zen, zen2
xz xz: Lossless compression utility and library icelake, x86_64, zen, zen2
zfp zfp: Library for lossy compression of multidimensional arrays icelake, x86_64, zen, zen2
zlib zlib: General purpose, patent-free compression ibrary icelake, x86_64, zen, zen2
zstd zstd: Fast, lossless compression algorithm icelake, x86_64, zen, zen2

Packages related to specific Data Formats

This section lists various software packages related to various scientific or other data formats, including libraries and binaries for reading, writing, and manipulating data in specific formats.

Packages related to specific Data Formats
Package Name Description Supported CPUs GPU ready?
adios2 adios2: The Adapatble Input/Output System, version 2 icelake, x86_64, zen, zen2 Yes
bamtools BamTools: Command line toolkit for dealing with BAM files icelake, x86_64, zen, zen2
cdo cdo: Climate Data Operators zen2 Yes
cfitsio CFITSIO: Libraries for Flexible Image Transport System (FITS) data format icelake, x86_64, zen, zen2
eccodes eccodes: Libraries for encoding/decoding weather related data formats icelake, x86_64, zen, zen2 Yes
h5utils h5utils: Utilities for visualization/conversion of HDF5 data zen2 Yes
hdf-eos2 HDF-EOS2: HDF for Earth Observing System (hdf4) icelake, x86_64, zen, zen2
hdf-eos5 HDF-EOS5: HDF for Earth Observing System (hdf5) icelake, x86_64, zen2 Yes
hdf4 hdf4: Libraries for Hierarchical Data Format v4 icelake, x86_64, zen, zen2
hdf5 hdf5: Libraries for Hierarchical Data Format v5 icelake, x86_64, zen, zen2 Yes
ioapi ioapi: Models-3/EDSS Input/Output Applications Programming Interface zen2 Yes
matio matio: MATLAB MAT file I/O library icelake, x86_64, zen, zen2 Yes
nco nco: Toolkits for manipulating data in NetCDF formats icelake, x86_64, zen, zen2 Yes
ncview ncview: Viewer for NetCDF files zen2 Yes
netcdf netcdf: C Libraries for NetCDF data format icelake, x86_64, zen, zen2 Yes
netcdf-cxx netcdf-cxx: C++ Libraries for NetCDF data format icelake, x86_64, zen, zen2 Yes
netcdf-fortran netcdf-fortran: Fortran Libraries for NetCDF data format icelake, x86_64, zen, zen2 Yes
parallel-netcdf parallel-netcdf: Parallel I/O library for NetCDF file format icelake, x86_64, zen, zen2 Yes
silo silo: libraries for reading/writing a variety of scientific data icelake, x86_64, zen, zen2 Yes

Packages related to various Earth sciences

This section lists various software packages related to various Earth sciences. See also Meteorology.

Packages related to various Earth sciences
Package Name Description Supported CPUs GPU ready?
esmf esmf: The Earth System Modeling Framework icelake, x86_64, zen, zen2 Yes
gdal gdal: Geospatial Data Abstraction Library icelake, zen2 Yes
geos geos: C++ Geometry Engine Open Source icelake, x86_64, zen2
grads grads: Grid Analysis and Display System zen2
gssha GSSHA: Gridded Surface/Subsurface Hydrologic Analysis x86_64
hdf-eos2 HDF-EOS2: HDF for Earth Observing System (hdf4) icelake, x86_64, zen, zen2
hdf-eos5 HDF-EOS5: HDF for Earth Observing System (hdf5) icelake, x86_64, zen2 Yes
proj proj: Generic Coordinate Transformation package icelake, zen, zen2

Packages related to various Engineering fields

This section lists various software packages related to various Engineering fields.

Packages related to various Engineering fields
Package Name Description Supported CPUs GPU ready?
abaqus Abaqus: Finite-element analysis/Computer-aided engineering software x86_64
ansys ANSYS: Computer-aided engineering software x86_64
ansys-em ANSYSEM: Computer-aided engineering software for electromagnetic systems x86_64
comsol Comsol: General-purpose simulation software x86_64
edem EDEM: Simulation using Discrete Element Method x86_64
lumerical Lumerical: Photonic simulation software x86_64
petsc PETSc: PETSc (Portable, Extensible Toolkit for Scientific Computation) zen2
rocky Rocky: ANSYS Rocky DEM x86_64
trilinos Trilinos: Solvers collection including linear, non-linear, optimization, and transient solvers zen2

Packages related to Genomics and Genetics

This section lists various software packages related to Genomics, Genetics, and related fields.

Packages related to Genomics and Genetics
Package Name Description Supported CPUs GPU ready?
adapterremoval AdapterRemoval: Tool for removing remnant adapter sequences from sequencing data icelake, x86_64, zen2
angsd angsd: Program for analyzing NGS data zen2
bamtools BamTools: Command line toolkit for dealing with BAM files icelake, x86_64, zen, zen2
bcftools bcftools: BCFtools is a set of utilities that manipulate variant calls zen2 Yes
bedtools2 bedtools2: swiss-army knife of genomics analysis tasks zen2
blast-plus blast-plus: Basic Local Alignment Search Tool icelake, x86_64, zen, zen2
bowtie bowtie: ultrafast sequence aligner zen2
bowtie2 bowtie2: ultrafast sequence aligner zen2
bwa bwa: Burrows-Wheeler Aligner zen2
exonerate Exonerate: generic tool for pairwise sequence comparison zen2
fastqc fastqc: quality control tool for high throughput sequence data. zen2
freebayes freebayes: Haplotype-based variant detector zen2
gatk GATK: Genome Analysis Tool Kit icelake, x86_64, zen2
hmmer hmmer: biosequence analyser using profile hidden Markov models icelake, x86_64, zen, zen2 Yes
htslib HTSlib: Library for accessing high-throughput sequencing data formats icelake, x86_64, zen, zen2
igv igv: Integrative Genomics Viewer zen2
impute2 IMPUTE2: genotype imputatin and haplotype phasing tool icelake, x86_64, zen2
jellyfish jellyfish: JELLYFISH is a tool for fast, memory-efficient counting of k-mers in DNA. icelake, x86_64, zen, zen2
kallisto kallisto: Program for RNA-sequence quantification zen2
mothur mothur: Bioinformatics tool for microbial ecology icelake, x86_64, zen2
picard picard: Command line tools for manipulation sequencing data zen2
plink PLINK: genome association analysis toolset zen2
popoolation2 popoolation2: PoPoolation2 allows to compare allele frequencies for single-nucleotide polymorphisms. zen2
samtools samtools: SAM (Sequence/Alignment Mapping) Tools icelake, x86_64, zen, zen2
shapeit4 SHAPEIT4: estimation of haplotypes for sequencing data. icelake, x86_64, zen2 Yes
snpeff SnpEff: Genomic variant annotation and functional effect prediction icelake, x86_64, zen2
stacks stacks: pipeline for building loci from short-read sequences zen2
tophat tophat: Spliced read mapper for RNA-Seq x86_64
usearch USEARCH: Ultra-fast sequence analysis tool x86_64
vcftools VCFtools: VCFtools is a set of utilities for working with VCF files zen2

Packages related to Image and/or Video processing

This section lists various software packages related to the processing/editting/manipulation/etc of image or video files.

Packages related to Image and/or Video processing
Package Name Description Supported CPUs GPU ready?
embree Embree: High performance ray tracing kernels x86_64
ffmpeg FFmpeg: icelake, x86_64, zen, zen2
jasper jasper: Library for manipulating JPEG-2000 images icelake, x86_64, zen2
libpng libpng: libpng is the official PNG reference library icelake, x86_64, zen, zen2
libtiff libtiff: Library for TIFF (Tag Image File Format) image format icelake, x86_64, zen, zen2

Packages related to Machine Learning

This section lists various software packages related to Machine Learning, Deep Learning, Neural Nets and related fields. You might also wish to look at the section on Computer Vision

Packages related to Machine Learning
Package Name Description Supported CPUs GPU ready?
caffe caffe: Deep learning framework icelake, x86_64, zen, zen2
cudnn cudnn: Library of deep learning/neural network primitives for GPUs icelake, zen, zen2 Yes
gloo gloo: Gloo collective communications package icelake, zen2 Yes
libxsmm LIBXSMM: library for specialized dense and sparse matrix operations icelake, x86_64, zen, zen2
opencv opencv: Open-source Computer Vision Library zen2
pyray pyray: Framework for scaling AI and Python applications zen2
pytorch pytorch: Open-source machine learning library icelake, zen2 Yes
tensorflow tensorflow: Open-source software library for machine intelligence icelake, zen, zen2 Yes

Packages related to Material Science

This section lists various software packages related to Material Science and related fields. See also Chemistry and SolidStatePhysics.

Packages related to Material Science
Package Name Description Supported CPUs GPU ready?
cp2k CP2K: quantum chemistry and solid state physics package zen2
spglib spglib: C library for finding and handling crystal symmetries icelake, x86_64, zen, zen2
vasp vasp: VASP: Vienna Ab-initio Simulation Package zen2

Packages related to Meteorology

This section lists various software packages related to Meteorology, Weather, Atmospheric and Oceanographic Sciences and related fields. See also Earth Sciences

Packages related to Meteorology
Package Name Description Supported CPUs GPU ready?
cdo cdo: Climate Data Operators zen2 Yes
eccodes eccodes: Libraries for encoding/decoding weather related data formats icelake, x86_64, zen, zen2 Yes
magics magics: meteorological plotting software icelake, zen2 Yes
ufs-weather-model ufs-weather-model: Unified Forecast System Weather Model zen2 Yes

Miscellaneous Packages

Miscellaneous packages. Libraries and other stuff which we need a modulefile for but do not belong anywhere else and do not merit there own category.

Miscellaneous Packages
Package Name Description Supported CPUs GPU ready?
binutils binutils: GNU Binary utilities icelake, x86_64, zen, zen2
freetype freetype: freely available software library to render fonts icelake, x86_64, zen, zen2
fribidi FriBidi: Unicode Bidirectional Algorithm implementation icelake, x86_64, zen, zen2
harfbuzz HarfBuzz: Text shaping library icelake, x86_64, zen, zen2

Packages related to Molecular Dynamics

This section lists various software packages related to Molecular Dynamics and related fields. See also Chemistry and Material Science.

Packages related to Molecular Dynamics
Package Name Description Supported CPUs GPU ready?
charmm charmm: Chemistry at HARvard Macromolecular Mechanics. zen2 Yes
gromacs gromacs: Chemical simulation/Molecular dynamics package icelake, zen, zen2 Yes
lammps lammps: LAMMPS: Large-scale Atomic/Molecular Massively Parallel Simulator icelake, zen, zen2 Yes
latte latte: Open source density functional tight binding molecular dynamics. icelake, x86_64, zen, zen2 Yes
libint libint: library to evaluate molecular integrals icelake, x86_64, zen, zen2 Yes
libvdwxc Libvdwxc: library for vdW-DF exchange-correlation functionals x86_64, zen, zen2 Yes
namd NAMD: Nanoscale Molecular Dynamics zen, zen2 Yes
openmm openmm: A high-performance toolkit for molecular simulation. icelake, zen2 Yes
openstructure openstructure: Open-source computational structural biology framework zen2
plumed PLUMED: plugin for molecular dynamics icelake, zen, zen2 Yes
qmd-progress qmd-progress: PROGRESS: Parallel, Rapid O(N) and Graph-based Recursive Electronic Structure Solver zen Yes
quantum-espresso quantum-espresso: Electronic-structure calculations at the nanoscale. zen2 Yes
sirius SIRIUS: domain specific library for electronic structure calculations zen
spglib spglib: C library for finding and handling crystal symmetries icelake, x86_64, zen, zen2
vmd VMD: Visual Molecular Dynamics x86_64
wannier90 Wannier90: tool to calculate maximally-localized Wannier functions icelake, x86_64, zen, zen2 Yes
xssp xssp: Secondary structure assignments for entries in the Protein Data Bank zen

Packages related to Multiphysics

This section lists various software packages related to Multiphysics.

Packages related to Multiphysics
Package Name Description Supported CPUs GPU ready?
petsc PETSc: PETSc (Portable, Extensible Toolkit for Scientific Computation) zen2
trilinos Trilinos: Solvers collection including linear, non-linear, optimization, and transient solvers zen2

Packages related to Neuroscience

This section lists various software packages related to Neuroscience and related fields liek brain imaging, etc.

Packages related to Neuroscience
Package Name Description Supported CPUs GPU ready?
afni afni: AFNI (Analysis of Functional NeuroImages) x86_64

Packages related to Numerical Methods

This section lists various software packages related to Numerical Methods and Computational Mathematics. It includes both underlying numerical libraries as well as advanced computational (and often GUI) environments. These packages are generally useful across a wide range of disciplines.

Packages related to Numerical Methods
Package Name Description Supported CPUs GPU ready?
alphafold alphafold: AlphaFold Protein Structure Database and Software icelake, x86_64
amber amber: Amber is a suite of biomolecular simulation programs. x86_64
amdblis amdblis: AMD Optimized BLAS libraries zen2
amdfftw amdfftw: AMD Discrete Fourier Transform library zen2 Yes
amdlibflame amdlibflame: AMD Optimized BLAS libraries zen2
amdlibm amdlibm: AMD Optimized BLAS libraries zen2
amdscalapack amdscalapack: AMD Optimized Scalable linear algebra package zen2 Yes
aocl-sparse aocl-sparse: Suite of Sparse Matrix algorithms zen2
arpack-ng arpack-ng: Fortran77 subroutines designed to solve large scale eigenvalue problems icelake, x86_64, zen, zen2 Yes
bml bml: Basic Matrix Library icelake, x86_64, zen, zen2 Yes
cgal cgal: Computations Geometry Algorithms Library icelake, x86_64, zen, zen2 Yes
cminpack cminpack: Library for solving nonlinear equations and nonlinear least squares problems icelake, x86_64, zen, zen2
cosma COSMA: Distributed Communication-Optimal Matrix-Matrix Multiplication Library icelake, x86_64, zen2 Yes
eigen eigen: C++ template library for matrix and vector operations, icelake, x86_64, zen, zen2
elpa elpa: Eigenvalue solvers for Petaflop Applications zen2
envi ENVI: ENVI software for processing and analyzing geospatial data x86_64
fftw fftw: Discrete Fourier Transform library icelake, x86_64, zen, zen2 Yes
freesurfer freesurfer: FreeSurfer is a brain imaging software package x86_64
gmp gmp: GNU Multiple Precision Arithmetic Library icelake, x86_64, zen, zen2
gsl gsl: GNU Scientific Library icelake, x86_64, zen, zen2
gurobi gurobi: Gurobi Optimizer for numerical programming x86_64
hypre HPYRE: Scalable Linear Solvers and Multigrid Methods icelake, x86_64, zen2 Yes
jags jags: JAGS Gibbs Sampler icelake, x86_64, zen2
kahip kahip: Karlsruhe High Quality Graph Partitioning Framework icelake, x86_64, zen, zen2 Yes
magma magma: Matrix Algebra on GPU and Multicore Architectures icelake, zen2 Yes
magma-computer-algebra MAGMA-computer-algebra: MAGMA is a computational algebra package. x86_64_v3 Yes
materials-studio materials-studio: Materials Studio for simulating and modeling materials x86_64
mathematica Mathematica: Mathematica symbolic and computational mathematics package. x86_64
matio matio: MATLAB MAT file I/O library icelake, x86_64, zen, zen2 Yes
matlab matlab: Matlab numerical computing environment x86_64
metis metis: Metis unstructured graph partitioner icelake, x86_64, zen, zen2
mgridgen mgridgen: Multilevel Serial & Parallel Coarse Grid Construction Library icelake, x86_64, zen, zen2 Yes
mpfr mpfr: GNU Multiple-precision Floating point library icelake, x86_64, zen, zen2
mt-metis mt-metis: Metis unstructured graph partitioner icelake, x86_64, zen, zen2
mumps mumps: MUltifrontal Massively Parallel sparse direct Solver icelake, x86_64, zen, zen2 Yes
ncl NCL: NCAR Command Language icelake, x86_64, zen2 Yes
netlogo netlogo: NetLogo is a programming language and an IDE for agent-based modeling. x86_64
openblas openblas: Optimized BLAS libraries icelake, x86_64, zen, zen2
pari-gp pari-gp: computer algebra system for computations in number theory zen2 Yes
parmetis parmetis: Parallel Metis icelake, x86_64, zen, zen2 Yes
parmgridgen ParMGridGen: Multilevel Serial & Parallel Coarse Grid Construction Library icelake, x86_64, zen, zen2 Yes
pexsi PEXSI: electronic structure calculation based on Kohn-Sham density functional theory icelake, x86_64, zen, zen2 Yes
pfft pfft: Parallel Fast Fourier Transform library icelake, x86_64, zen, zen2 Yes
pytorch pytorch: Open-source machine learning library icelake, zen2 Yes
scalapack scalapack: Scalable linear algebra package icelake, x86_64, zen, zen2 Yes
scotch scotch: Package for graph and mesh partitioning, graph clustering, and sparse matrix ordering icelake, x86_64, zen, zen2 Yes
slepc SLEPc: Scalable Library for Eigenvalue Problem Computations zen2
spfft SpFFT: 3D FFT library for sparse frequency domain data icelake, x86_64, zen, zen2
star-ccm star-ccm: CFD based simulation software from Siemens x86_64
suite-sparse suite-sparse: Suite of Sparse Matrix algorithms icelake, x86_64, zen, zen2
superlu superlu: Sparse Linear system solver (sequential) icelake, x86_64, zen, zen2
superlu-dist superlu-dist: Sparse Linear system solver (distributed mem/MPI) icelake, x86_64, zen, zen2
superlu-mt superlu-mt: Sparse Linear system solver (multithreaded) icelake, x86_64, zen, zen2
tensorflow tensorflow: Open-source software library for machine intelligence icelake, zen, zen2 Yes
voropp Voro++: library for 3D computations of the Voronoi tessellation icelake, x86_64, zen, zen2
zoltan zoltan: Toolkit for parallel combinatorial algorithms icelake, x86_64, zen, zen2 Yes

Packages defining a Python Module

This section lists various software packages containing python modules which can be imported in your python code, after the corresponding environmental module is loaded.

Packages defining a Python Module
Package Name Description Supported CPUs GPU ready?
charm4py Charm4py: distributed/parallel programing framework for Python zen, zen2 Yes
charmm charmm: Chemistry at HARvard Macromolecular Mechanics. zen2 Yes
cupy cupy: a Python array library accelerated with NVIDIA CUDA zen2 Yes
cython cython: Compiler for writing C extensions for Python icelake, x86_64, zen, zen2
jupyter jupyter: The Jupyter Notebook application icelake, x86_64, zen, zen2
magics magics: meteorological plotting software icelake, zen2 Yes
openmm openmm: A high-performance toolkit for molecular simulation. icelake, zen2 Yes
pyray pyray: Framework for scaling AI and Python applications zen2
pytorch pytorch: Open-source machine learning library icelake, zen2 Yes
tensorflow tensorflow: Open-source software library for machine intelligence icelake, zen, zen2 Yes
trilinos Trilinos: Solvers collection including linear, non-linear, optimization, and transient solvers zen2

Packages for Software Development (compilers, scripting languages, etc.)

This section lists various software packages related to the development and optimization, etc. of software and codes. It includes compilers, debuggers, profiling tools, as well as relatively low level libraries. It also includes various scripting languages.

Packages for Software Development (compilers, scripting languages, etc.)
Package Name Description Supported CPUs GPU ready?
alphafold alphafold: AlphaFold Protein Structure Database and Software icelake, x86_64
amdblis amdblis: AMD Optimized BLAS libraries zen2
amdfftw amdfftw: AMD Discrete Fourier Transform library zen2 Yes
amdlibflame amdlibflame: AMD Optimized BLAS libraries zen2
amdlibm amdlibm: AMD Optimized BLAS libraries zen2
amdscalapack amdscalapack: AMD Optimized Scalable linear algebra package zen2 Yes
aocc aocc: AMD Optimizing Compiler Suite x86_64
aocl-sparse aocl-sparse: Suite of Sparse Matrix algorithms zen2
armadillo armadillo: Linear algebra library for C++ icelake, x86_64, zen2 Yes
bml bml: Basic Matrix Library icelake, x86_64, zen, zen2 Yes
boost boost: free, portable C++ source libraries icelake, x86_64, zen, zen2 Yes
cgal cgal: Computations Geometry Algorithms Library icelake, x86_64, zen, zen2 Yes
charm4py Charm4py: distributed/parallel programing framework for Python zen, zen2 Yes
charmpp Charm++: parallel programming framework in C++ icelake, x86_64, zen, zen2
cmake cmake: cross-platform, open-source build system icelake, x86_64, zen, zen2
cmdstan CmdStan: command line interface to Stan icelake, x86_64, zen2 Yes
cminpack cminpack: Library for solving nonlinear equations and nonlinear least squares problems icelake, x86_64, zen, zen2
cosma COSMA: Distributed Communication-Optimal Matrix-Matrix Multiplication Library icelake, x86_64, zen2 Yes
cube cube: Performance report explorer for Scalasca and Score-P zen2
cubelib cubelib: C++ library and tools for cube zen2
cubew cubew: High performance C writer library for cube zen2
cuda cuda: parallel computing platform/programming model for NVIDIA GPUs icelake, x86_64, zen, zen2
cuda-compatibility cuda-compatibility: CUDA Toolkit Compatibility package x86_64
cudnn cudnn: Library of deep learning/neural network primitives for GPUs icelake, zen, zen2 Yes
cython cython: Compiler for writing C extensions for Python icelake, x86_64, zen, zen2
dmtcp dmtcp: Distributed Multithreaded Checkpointing icelake, x86_64, zen, zen2
dyninst dyninst: API for dynamic binary instrumentation icelake, zen, zen2 Yes
eccodes eccodes: Libraries for encoding/decoding weather related data formats icelake, x86_64, zen, zen2 Yes
eigen eigen: C++ template library for matrix and vector operations, icelake, x86_64, zen, zen2
elpa elpa: Eigenvalue solvers for Petaflop Applications zen2
envi ENVI: ENVI software for processing and analyzing geospatial data x86_64
esmf esmf: The Earth System Modeling Framework icelake, x86_64, zen, zen2 Yes
ffmpeg FFmpeg: icelake, x86_64, zen, zen2
fftw fftw: Discrete Fourier Transform library icelake, x86_64, zen, zen2 Yes
gcc gcc: GNU Compiler Suite x86_64 Yes
gdal gdal: Geospatial Data Abstraction Library icelake, zen2 Yes
geos geos: C++ Geometry Engine Open Source icelake, x86_64, zen2
gloo gloo: Gloo collective communications package icelake, zen2 Yes
go go: Go programming language icelake, x86_64, zen2
gsl gsl: GNU Scientific Library icelake, x86_64, zen, zen2
gurobi gurobi: Gurobi Optimizer for numerical programming x86_64
hdf4 hdf4: Libraries for Hierarchical Data Format v4 icelake, x86_64, zen, zen2
hdf5 hdf5: Libraries for Hierarchical Data Format v5 icelake, x86_64, zen, zen2 Yes
hip HIP: Heterogeneous Interface for Portability (HIP) zen2 Yes
hpctoolkit hpctoolkit: toolkit for performance measurement and analysis icelake, zen2 Yes
hpl hpl: High Performance Computing Linpack Benchmark icelake, x86_64, zen2 Yes
hpx hpx: C++ runtime for parallel and distributed applications zen, zen2
hypre HPYRE: Scalable Linear Solvers and Multigrid Methods icelake, x86_64, zen2 Yes
icu4c icu4c: Libraries for unicode and globalization support icelake, x86_64, zen, zen2
intel Intel: Intel OneAPI Classic compilers x86_64
intel-advisor intel-advisor: Intel advisor performance analysis tool zen2
intel-dal intel-dal: Intel Data Analytics Library (DAL) zen2
intel-dnn intel-dnn: Intel Deep Neural Network Library zen2
intel-dpl intel-dpl: Intel Data Parallel C++ Library (DPL) zen2
intel-inspector intel-inspector: Intel Inspector memory, thread checking and debugging tool zen2
intel-ipp intel-ipp: Intel Integrated Performance Primitives (IPP) zen2
intel-ippcp intel-ippcp: Intel Integrated Performance Primitives Cryptography (IPP Crypto) zen2
intel-mkl intel-mkl: Intel Math Kernel Library (MKL/oneMKL) icelake, x86_64, zen2 Yes
intel-mpi intel-mpi: Intel Message Passing Interface (MPI) Library zen2
intel-mpi-benchmarks intel-mpi-benchmarks: MPI benchmarks from Intel zen2 Yes
intel-tbb intel-tbb: Intel Threaded Building Blocks icelake, x86_64, zen, zen2 Yes
intel-vpl intel-vpl: Intel Video Processing Library (oneVPL) zen2
intel-vtune intel-vtune: Intel oneAPI VTune Profiler zen2
ioapi ioapi: Models-3/EDSS Input/Output Applications Programming Interface zen2 Yes
ior ior: Parallel IO benchmark icelake, x86_64, zen2 Yes
jags jags: JAGS Gibbs Sampler icelake, x86_64, zen2
jasper jasper: Library for manipulating JPEG-2000 images icelake, x86_64, zen2
json-c JSON-C: JSON library implemented in C icelake, x86_64, zen2
jsoncpp JsonCpp: JSON library implemented in C++ icelake, zen, zen2
julia julia: Julia programming language: A fresh approach to technical computing x86_64
kahip kahip: Karlsruhe High Quality Graph Partitioning Framework icelake, x86_64, zen, zen2 Yes
libiconv libiconv: Functions for internationalization/character set conversion icelake, x86_64, zen, zen2
libpng libpng: libpng is the official PNG reference library icelake, x86_64, zen, zen2
libtiff libtiff: Library for TIFF (Tag Image File Format) image format icelake, x86_64, zen, zen2
libxsmm LIBXSMM: library for specialized dense and sparse matrix operations icelake, x86_64, zen, zen2
libzmq libzmq: ZeroMQ networking/concurrency library and core API icelake, x86_64, zen, zen2
llvm llvm: LLVM collection of compiler and toolchain modules icelake, zen, zen2
magma magma: Matrix Algebra on GPU and Multicore Architectures icelake, zen2 Yes
magma-computer-algebra MAGMA-computer-algebra: MAGMA is a computational algebra package. x86_64_v3 Yes
mathematica Mathematica: Mathematica symbolic and computational mathematics package. x86_64
matio matio: MATLAB MAT file I/O library icelake, x86_64, zen, zen2 Yes
matlab matlab: Matlab numerical computing environment x86_64
mesa mesa: Mesa is an open-source OpenGL graphics library icelake, x86_64, zen, zen2
metis metis: Metis unstructured graph partitioner icelake, x86_64, zen, zen2
mgridgen mgridgen: Multilevel Serial & Parallel Coarse Grid Construction Library icelake, x86_64, zen, zen2 Yes
mpfr mpfr: GNU Multiple-precision Floating point library icelake, x86_64, zen, zen2
mt-metis mt-metis: Metis unstructured graph partitioner icelake, x86_64, zen, zen2
mumps mumps: MUltifrontal Massively Parallel sparse direct Solver icelake, x86_64, zen, zen2 Yes
nccl NCCL: NVIDIA Collective Communication Library icelake, zen2 Yes
ncl NCL: NCAR Command Language icelake, x86_64, zen2 Yes
nco nco: Toolkits for manipulating data in NetCDF formats icelake, x86_64, zen, zen2 Yes
netcdf netcdf: C Libraries for NetCDF data format icelake, x86_64, zen, zen2 Yes
netcdf-cxx netcdf-cxx: C++ Libraries for NetCDF data format icelake, x86_64, zen, zen2 Yes
netcdf-fortran netcdf-fortran: Fortran Libraries for NetCDF data format icelake, x86_64, zen, zen2 Yes
netlogo netlogo: NetLogo is a programming language and an IDE for agent-based modeling. x86_64
nvhpc nvhpc: Nvidia HPC SDK Compiler suite x86_64
nvmpi nvmpi: MPI libraries from the Nvidia HPC SDK Compiler suite x86_64
oneapi Intel: Intel OneAPI new compilers x86_64
openblas openblas: Optimized BLAS libraries icelake, x86_64, zen, zen2
opencv opencv: Open-source Computer Vision Library zen2
openjdk openjdk: Open-source implementation of Java icelake, x86_64, zen, zen2
openmpi openmpi: OpenMPI implementation of Message Passing Interface icelake, x86_64, zen, zen2 Yes
osu-micro-benchmarks osu-micro-benchmarks: Microbenchmarks for MPI icelake, x86_64, zen, zen2
parallel parallel: GNU parallel tool for executing jobs in parallel zen2
parallel-netcdf parallel-netcdf: Parallel I/O library for NetCDF file format icelake, x86_64, zen, zen2 Yes
parmetis parmetis: Parallel Metis icelake, x86_64, zen, zen2 Yes
perl perl: Perl scripting language icelake, x86_64, zen, zen2
pfft pfft: Parallel Fast Fourier Transform library icelake, x86_64, zen, zen2 Yes
python python: Python scripting language icelake, x86_64, zen2
qt qt: cross-platform application development framework for GUIs icelake, x86_64, zen, zen2
r r: R statistical computing scripting language icelake, x86_64, zen2
rdma-core RDMA-Core: RDMA Core userspace libraries and drivers zen2
rust rust: Rust programming language icelake, x86_64, zen, zen2
scalapack scalapack: Scalable linear algebra package icelake, x86_64, zen, zen2 Yes
scons SCons: SCons open-source software construction tool icelake, x86_64, zen2
scorep scorep: suite for profiling, event tracing, and analysis of HPC applications zen2 Yes
scotch scotch: Package for graph and mesh partitioning, graph clustering, and sparse matrix ordering icelake, x86_64, zen, zen2 Yes
silo silo: libraries for reading/writing a variety of scientific data icelake, x86_64, zen, zen2 Yes
singularity singularity: Singularity container utilities x86_64
sox sox: Sound eXchange, the Swiss Army knife of sound processing icelake, x86_64, zen2
sqlite sqlite: Library for lossy compression of multidimensional arrays icelake, x86_64, zen, zen2
star-ccm star-ccm: CFD based simulation software from Siemens x86_64
suite-sparse suite-sparse: Suite of Sparse Matrix algorithms icelake, x86_64, zen, zen2
superlu superlu: Sparse Linear system solver (sequential) icelake, x86_64, zen, zen2
superlu-dist superlu-dist: Sparse Linear system solver (distributed mem/MPI) icelake, x86_64, zen, zen2
superlu-mt superlu-mt: Sparse Linear system solver (multithreaded) icelake, x86_64, zen, zen2
swig swig: compiler to interface C/C++ libraries to Perl, Python, etc icelake, x86_64, zen, zen2
toolchain/aocc aocc: AOCC Compiler Toolchains x86_64
toolchain/gcc gcc: GNU Compiler Toolchains x86_64
toolchain/intel intel: Intel Classic Compiler Toolchains x86_64
udunits udunits: The UDUNITS package supports units of physical quantities. icelake, x86_64, zen, zen2
umd-examples/hello-umd hello-umd: Simple Hello world binary icelake, x86_64, zen, zen2 Yes
zlib zlib: General purpose, patent-free compression ibrary icelake, x86_64, zen, zen2
zoltan zoltan: Toolkit for parallel combinatorial algorithms icelake, x86_64, zen, zen2 Yes

Basic Utility Packages

This section lists various utility software packages, etc. This is sort of a catch-all category for packages which are useful across a wide range of disciplines but do not really fall into any discipline. These are often just newer versions of utilities supplied by the OS.

Basic Utility Packages
Package Name Description Supported CPUs GPU ready?
coreutils-progress-viewer coreutils-progress-viewer: command line tool for monitoring progress of core utilities zen2
curl curl: command line tool for transferring data icelake, x86_64, zen, zen2
dmtcp dmtcp: Distributed Multithreaded Checkpointing icelake, x86_64, zen, zen2
git-lfs git-lfs: command line tool for managing cloud storage icelake, x86_64, zen2
hpcc hpcc: Default env setting for the various clusters x86_64
jupyter jupyter: The Jupyter Notebook application icelake, x86_64, zen, zen2
mercurial mercurial: Mercurial source control management system icelake, x86_64, zen2
rclone Rclone: command line tool for managing cloud storage zen2
singularity singularity: Singularity container utilities x86_64
sox sox: Sound eXchange, the Swiss Army knife of sound processing icelake, x86_64, zen2

Packages related to Visualization and Graphics

This section lists various software packages related to Visualization; basically packages to assist in visualizing data generated from other packages/codes. It includes both basic graphics libraries and high end (GUI) visualization platforms.

Packages related to Visualization and Graphics
Package Name Description Supported CPUs GPU ready?
colmap COLMAP: Image-based 3D reconstruction pipeline zen2 Yes
envi ENVI: ENVI software for processing and analyzing geospatial data x86_64
gnuplot gnuplot: command-line driven graphing utility icelake, x86_64, zen, zen2
grads grads: Grid Analysis and Display System zen2
graphviz graphviz: Graph Visualization Software icelake, x86_64, zen2 Yes
magics magics: meteorological plotting software icelake, zen2 Yes
mesa mesa: Mesa is an open-source OpenGL graphics library icelake, x86_64, zen, zen2
ncl NCL: NCAR Command Language icelake, x86_64, zen2 Yes
paraview paraview: data analysis and visualization application zen, zen2
paraview-headless paraview-headless: data analysis and visualization application (headless version) zen2
pgplot pgplot: PGPLOT Graphics Subroutine Library icelake, x86_64, zen2
plplot plplot: Cross-platform software for creating scientific plots zen2
povray POV-Ray: Persistence of Vision Ray tracer icelake, x86_64, zen, zen2
virtualgl virtualgl: Toolkit to allow remote display to run OpenGL applications with full hardware acceleration icelake, x86_64, zen, zen2
visit visit: interactive, scalable, visualization, animation and analysis tool zen2 Yes
vmd VMD: Visual Molecular Dynamics x86_64
vtk vtk: 3D computer graphics, image processing and visualization library icelake, zen, zen2 Yes

All packages available on the Zaratan cluster

This section lists all software packages available on the Zaratan cluster

All packages available on the Zaratan cluster
Package Name Description Supported CPUs GPU ready?
abaqus Abaqus: Finite-element analysis/Computer-aided engineering software x86_64
adapterremoval AdapterRemoval: Tool for removing remnant adapter sequences from sequencing data icelake, x86_64, zen2
adios2 adios2: The Adapatble Input/Output System, version 2 icelake, x86_64, zen, zen2 Yes
afni afni: AFNI (Analysis of Functional NeuroImages) x86_64
alphafold alphafold: AlphaFold Protein Structure Database and Software icelake, x86_64
amber amber: Amber is a suite of biomolecular simulation programs. x86_64
amdblis amdblis: AMD Optimized BLAS libraries zen2
amdfftw amdfftw: AMD Discrete Fourier Transform library zen2 Yes
amdlibflame amdlibflame: AMD Optimized BLAS libraries zen2
amdlibm amdlibm: AMD Optimized BLAS libraries zen2
amdscalapack amdscalapack: AMD Optimized Scalable linear algebra package zen2 Yes
angsd angsd: Program for analyzing NGS data zen2
ansys ANSYS: Computer-aided engineering software x86_64
ansys-em ANSYSEM: Computer-aided engineering software for electromagnetic systems x86_64
aocc aocc: AMD Optimizing Compiler Suite x86_64
aocl-sparse aocl-sparse: Suite of Sparse Matrix algorithms zen2
armadillo armadillo: Linear algebra library for C++ icelake, x86_64, zen2 Yes
arpack-ng arpack-ng: Fortran77 subroutines designed to solve large scale eigenvalue problems icelake, x86_64, zen, zen2 Yes
bamtools BamTools: Command line toolkit for dealing with BAM files icelake, x86_64, zen, zen2
bcftools bcftools: BCFtools is a set of utilities that manipulate variant calls zen2 Yes
bedtools2 bedtools2: swiss-army knife of genomics analysis tasks zen2
binutils binutils: GNU Binary utilities icelake, x86_64, zen, zen2
blast-plus blast-plus: Basic Local Alignment Search Tool icelake, x86_64, zen, zen2
bml bml: Basic Matrix Library icelake, x86_64, zen, zen2 Yes
boost boost: free, portable C++ source libraries icelake, x86_64, zen, zen2 Yes
bowtie bowtie: ultrafast sequence aligner zen2
bowtie2 bowtie2: ultrafast sequence aligner zen2
bwa bwa: Burrows-Wheeler Aligner zen2
bzip2 bzip2: patent-free high quality data compression libraries icelake, x86_64, zen, zen2
c-blosc c-blosc: A blocking, shuffling, and loss-less compression library icelake, x86_64, zen, zen2
caffe caffe: Deep learning framework icelake, x86_64, zen, zen2
cdo cdo: Climate Data Operators zen2 Yes
cfitsio CFITSIO: Libraries for Flexible Image Transport System (FITS) data format icelake, x86_64, zen, zen2
cfour cfour: Software for quantum chemical modeling x86_64
cgal cgal: Computations Geometry Algorithms Library icelake, x86_64, zen, zen2 Yes
cgns cgns: CFD General notation system icelake, x86_64, zen2 Yes
charm4py Charm4py: distributed/parallel programing framework for Python zen, zen2 Yes
charmm charmm: Chemistry at HARvard Macromolecular Mechanics. zen2 Yes
charmpp Charm++: parallel programming framework in C++ icelake, x86_64, zen, zen2
cmake cmake: cross-platform, open-source build system icelake, x86_64, zen, zen2
cmdstan CmdStan: command line interface to Stan icelake, x86_64, zen2 Yes
cminpack cminpack: Library for solving nonlinear equations and nonlinear least squares problems icelake, x86_64, zen, zen2
colmap COLMAP: Image-based 3D reconstruction pipeline zen2 Yes
comsol Comsol: General-purpose simulation software x86_64
coreutils-progress-viewer coreutils-progress-viewer: command line tool for monitoring progress of core utilities zen2
cosma COSMA: Distributed Communication-Optimal Matrix-Matrix Multiplication Library icelake, x86_64, zen2 Yes
cp2k CP2K: quantum chemistry and solid state physics package zen2
cube cube: Performance report explorer for Scalasca and Score-P zen2
cubelib cubelib: C++ library and tools for cube zen2
cubew cubew: High performance C writer library for cube zen2
cuda cuda: parallel computing platform/programming model for NVIDIA GPUs icelake, x86_64, zen, zen2
cuda-compatibility cuda-compatibility: CUDA Toolkit Compatibility package x86_64
cudnn cudnn: Library of deep learning/neural network primitives for GPUs icelake, zen, zen2 Yes
cupy cupy: a Python array library accelerated with NVIDIA CUDA zen2 Yes
curl curl: command line tool for transferring data icelake, x86_64, zen, zen2
cython cython: Compiler for writing C extensions for Python icelake, x86_64, zen, zen2
dmtcp dmtcp: Distributed Multithreaded Checkpointing icelake, x86_64, zen, zen2
dplr dplr: Hypersonic Continuum CFD Code skylake_avx512, x86_64
dyninst dyninst: API for dynamic binary instrumentation icelake, zen, zen2 Yes
eccodes eccodes: Libraries for encoding/decoding weather related data formats icelake, x86_64, zen, zen2 Yes
edem EDEM: Simulation using Discrete Element Method x86_64
eigen eigen: C++ template library for matrix and vector operations, icelake, x86_64, zen, zen2
elpa elpa: Eigenvalue solvers for Petaflop Applications zen2
embree Embree: High performance ray tracing kernels x86_64
envi ENVI: ENVI software for processing and analyzing geospatial data x86_64
esmf esmf: The Earth System Modeling Framework icelake, x86_64, zen, zen2 Yes
exonerate Exonerate: generic tool for pairwise sequence comparison zen2
fastqc fastqc: quality control tool for high throughput sequence data. zen2
fds FDS: Fire Dynamics Simulator x86_64
ffmpeg FFmpeg: icelake, x86_64, zen, zen2
fftw fftw: Discrete Fourier Transform library icelake, x86_64, zen, zen2 Yes
freebayes freebayes: Haplotype-based variant detector zen2
freesurfer freesurfer: FreeSurfer is a brain imaging software package x86_64
freetype freetype: freely available software library to render fonts icelake, x86_64, zen, zen2
fribidi FriBidi: Unicode Bidirectional Algorithm implementation icelake, x86_64, zen, zen2
fun3d fun3d: FUN3d (Fully Unstructured Navier-Stokes) CFD suite skylake_avx512
gatk GATK: Genome Analysis Tool Kit icelake, x86_64, zen2
gaussian Gaussian: Software for electronic structure modeling x86_64
gcc gcc: GNU Compiler Suite x86_64 Yes
gdal gdal: Geospatial Data Abstraction Library icelake, zen2 Yes
geos geos: C++ Geometry Engine Open Source icelake, x86_64, zen2
git-lfs git-lfs: command line tool for managing cloud storage icelake, x86_64, zen2
gloo gloo: Gloo collective communications package icelake, zen2 Yes
gmp gmp: GNU Multiple Precision Arithmetic Library icelake, x86_64, zen, zen2
gnuplot gnuplot: command-line driven graphing utility icelake, x86_64, zen, zen2
go go: Go programming language icelake, x86_64, zen2
grads grads: Grid Analysis and Display System zen2
graphviz graphviz: Graph Visualization Software icelake, x86_64, zen2 Yes
gromacs gromacs: Chemical simulation/Molecular dynamics package icelake, zen, zen2 Yes
gsl gsl: GNU Scientific Library icelake, x86_64, zen, zen2
gssha GSSHA: Gridded Surface/Subsurface Hydrologic Analysis x86_64
gurobi gurobi: Gurobi Optimizer for numerical programming x86_64
h5utils h5utils: Utilities for visualization/conversion of HDF5 data zen2 Yes
harfbuzz HarfBuzz: Text shaping library icelake, x86_64, zen, zen2
hdf-eos2 HDF-EOS2: HDF for Earth Observing System (hdf4) icelake, x86_64, zen, zen2
hdf-eos5 HDF-EOS5: HDF for Earth Observing System (hdf5) icelake, x86_64, zen2 Yes
hdf4 hdf4: Libraries for Hierarchical Data Format v4 icelake, x86_64, zen, zen2
hdf5 hdf5: Libraries for Hierarchical Data Format v5 icelake, x86_64, zen, zen2 Yes
hemocell HemoCell: Framework for simulation of blood and other dense deformable capsule suspensions zen2 Yes
hip HIP: Heterogeneous Interface for Portability (HIP) zen2 Yes
hmmer hmmer: biosequence analyser using profile hidden Markov models icelake, x86_64, zen, zen2 Yes
hpcc hpcc: Default env setting for the various clusters x86_64
hpctoolkit hpctoolkit: toolkit for performance measurement and analysis icelake, zen2 Yes
hpl hpl: High Performance Computing Linpack Benchmark icelake, x86_64, zen2 Yes
hpx hpx: C++ runtime for parallel and distributed applications zen, zen2
htslib HTSlib: Library for accessing high-throughput sequencing data formats icelake, x86_64, zen, zen2
hypre HPYRE: Scalable Linear Solvers and Multigrid Methods icelake, x86_64, zen2 Yes
icu4c icu4c: Libraries for unicode and globalization support icelake, x86_64, zen, zen2
igv igv: Integrative Genomics Viewer zen2
impute2 IMPUTE2: genotype imputatin and haplotype phasing tool icelake, x86_64, zen2
intel Intel: Intel OneAPI Classic compilers x86_64
intel-advisor intel-advisor: Intel advisor performance analysis tool zen2
intel-dal intel-dal: Intel Data Analytics Library (DAL) zen2
intel-dnn intel-dnn: Intel Deep Neural Network Library zen2
intel-dpl intel-dpl: Intel Data Parallel C++ Library (DPL) zen2
intel-inspector intel-inspector: Intel Inspector memory, thread checking and debugging tool zen2
intel-ipp intel-ipp: Intel Integrated Performance Primitives (IPP) zen2
intel-ippcp intel-ippcp: Intel Integrated Performance Primitives Cryptography (IPP Crypto) zen2
intel-mkl intel-mkl: Intel Math Kernel Library (MKL/oneMKL) icelake, x86_64, zen2 Yes
intel-mpi intel-mpi: Intel Message Passing Interface (MPI) Library zen2
intel-mpi-benchmarks intel-mpi-benchmarks: MPI benchmarks from Intel zen2 Yes
intel-tbb intel-tbb: Intel Threaded Building Blocks icelake, x86_64, zen, zen2 Yes
intel-vpl intel-vpl: Intel Video Processing Library (oneVPL) zen2
intel-vtune intel-vtune: Intel oneAPI VTune Profiler zen2
ioapi ioapi: Models-3/EDSS Input/Output Applications Programming Interface zen2 Yes
ior ior: Parallel IO benchmark icelake, x86_64, zen2 Yes
jags jags: JAGS Gibbs Sampler icelake, x86_64, zen2
jasper jasper: Library for manipulating JPEG-2000 images icelake, x86_64, zen2
jellyfish jellyfish: JELLYFISH is a tool for fast, memory-efficient counting of k-mers in DNA. icelake, x86_64, zen, zen2
json-c JSON-C: JSON library implemented in C icelake, x86_64, zen2
jsoncpp JsonCpp: JSON library implemented in C++ icelake, zen, zen2
julia julia: Julia programming language: A fresh approach to technical computing x86_64
jupyter jupyter: The Jupyter Notebook application icelake, x86_64, zen, zen2
kahip kahip: Karlsruhe High Quality Graph Partitioning Framework icelake, x86_64, zen, zen2 Yes
kallisto kallisto: Program for RNA-sequence quantification zen2
lammps lammps: LAMMPS: Large-scale Atomic/Molecular Massively Parallel Simulator icelake, zen, zen2 Yes
latte latte: Open source density functional tight binding molecular dynamics. icelake, x86_64, zen, zen2 Yes
libiconv libiconv: Functions for internationalization/character set conversion icelake, x86_64, zen, zen2
libint libint: library to evaluate molecular integrals icelake, x86_64, zen, zen2 Yes
libpng libpng: libpng is the official PNG reference library icelake, x86_64, zen, zen2
libtiff libtiff: Library for TIFF (Tag Image File Format) image format icelake, x86_64, zen, zen2
libvdwxc Libvdwxc: library for vdW-DF exchange-correlation functionals x86_64, zen, zen2 Yes
libxsmm LIBXSMM: library for specialized dense and sparse matrix operations icelake, x86_64, zen, zen2
libzmq libzmq: ZeroMQ networking/concurrency library and core API icelake, x86_64, zen, zen2
llvm llvm: LLVM collection of compiler and toolchain modules icelake, zen, zen2
lumerical Lumerical: Photonic simulation software x86_64
lz4 lz4: Lossless compression utility and library icelake, x86_64, zen, zen2
magics magics: meteorological plotting software icelake, zen2 Yes
magma magma: Matrix Algebra on GPU and Multicore Architectures icelake, zen2 Yes
magma-computer-algebra MAGMA-computer-algebra: MAGMA is a computational algebra package. x86_64_v3 Yes
materials-studio materials-studio: Materials Studio for simulating and modeling materials x86_64
mathematica Mathematica: Mathematica symbolic and computational mathematics package. x86_64
matio matio: MATLAB MAT file I/O library icelake, x86_64, zen, zen2 Yes
matlab matlab: Matlab numerical computing environment x86_64
mercurial mercurial: Mercurial source control management system icelake, x86_64, zen2
mesa mesa: Mesa is an open-source OpenGL graphics library icelake, x86_64, zen, zen2
metis metis: Metis unstructured graph partitioner icelake, x86_64, zen, zen2
mgridgen mgridgen: Multilevel Serial & Parallel Coarse Grid Construction Library icelake, x86_64, zen, zen2 Yes
mothur mothur: Bioinformatics tool for microbial ecology icelake, x86_64, zen2
mpfr mpfr: GNU Multiple-precision Floating point library icelake, x86_64, zen, zen2
mt-metis mt-metis: Metis unstructured graph partitioner icelake, x86_64, zen, zen2
mumps mumps: MUltifrontal Massively Parallel sparse direct Solver icelake, x86_64, zen, zen2 Yes
namd NAMD: Nanoscale Molecular Dynamics zen, zen2 Yes
nccl NCCL: NVIDIA Collective Communication Library icelake, zen2 Yes
ncl NCL: NCAR Command Language icelake, x86_64, zen2 Yes
nco nco: Toolkits for manipulating data in NetCDF formats icelake, x86_64, zen, zen2 Yes
ncview ncview: Viewer for NetCDF files zen2 Yes
netcdf netcdf: C Libraries for NetCDF data format icelake, x86_64, zen, zen2 Yes
netcdf-cxx netcdf-cxx: C++ Libraries for NetCDF data format icelake, x86_64, zen, zen2 Yes
netcdf-fortran netcdf-fortran: Fortran Libraries for NetCDF data format icelake, x86_64, zen, zen2 Yes
netlogo netlogo: NetLogo is a programming language and an IDE for agent-based modeling. x86_64
nvhpc nvhpc: Nvidia HPC SDK Compiler suite x86_64
nvmpi nvmpi: MPI libraries from the Nvidia HPC SDK Compiler suite x86_64
oneapi Intel: Intel OneAPI new compilers x86_64
openblas openblas: Optimized BLAS libraries icelake, x86_64, zen, zen2
opencv opencv: Open-source Computer Vision Library zen2
openfoam openfoam: Opensource C++ CFD toolbox zen, zen2 Yes
openjdk openjdk: Open-source implementation of Java icelake, x86_64, zen, zen2
openmm openmm: A high-performance toolkit for molecular simulation. icelake, zen2 Yes
openmpi openmpi: OpenMPI implementation of Message Passing Interface icelake, x86_64, zen, zen2 Yes
openstructure openstructure: Open-source computational structural biology framework zen2
orca ORCA: Ab initio quantum chemistry package x86_64
osu-micro-benchmarks osu-micro-benchmarks: Microbenchmarks for MPI icelake, x86_64, zen, zen2
parallel parallel: GNU parallel tool for executing jobs in parallel zen2
parallel-netcdf parallel-netcdf: Parallel I/O library for NetCDF file format icelake, x86_64, zen, zen2 Yes
paraview paraview: data analysis and visualization application zen, zen2
paraview-headless paraview-headless: data analysis and visualization application (headless version) zen2
pari-gp pari-gp: computer algebra system for computations in number theory zen2 Yes
parmetis parmetis: Parallel Metis icelake, x86_64, zen, zen2 Yes
parmgridgen ParMGridGen: Multilevel Serial & Parallel Coarse Grid Construction Library icelake, x86_64, zen, zen2 Yes
perl perl: Perl scripting language icelake, x86_64, zen, zen2
petsc PETSc: PETSc (Portable, Extensible Toolkit for Scientific Computation) zen2
pexsi PEXSI: electronic structure calculation based on Kohn-Sham density functional theory icelake, x86_64, zen, zen2 Yes
pfft pfft: Parallel Fast Fourier Transform library icelake, x86_64, zen, zen2 Yes
pgplot pgplot: PGPLOT Graphics Subroutine Library icelake, x86_64, zen2
picard picard: Command line tools for manipulation sequencing data zen2
plink PLINK: genome association analysis toolset zen2
plplot plplot: Cross-platform software for creating scientific plots zen2
plumed PLUMED: plugin for molecular dynamics icelake, zen, zen2 Yes
popoolation2 popoolation2: PoPoolation2 allows to compare allele frequencies for single-nucleotide polymorphisms. zen2
povray POV-Ray: Persistence of Vision Ray tracer icelake, x86_64, zen, zen2
proj proj: Generic Coordinate Transformation package icelake, zen, zen2
pyray pyray: Framework for scaling AI and Python applications zen2
python python: Python scripting language icelake, x86_64, zen2
pytorch pytorch: Open-source machine learning library icelake, zen2 Yes
qmd-progress qmd-progress: PROGRESS: Parallel, Rapid O(N) and Graph-based Recursive Electronic Structure Solver zen Yes
qt qt: cross-platform application development framework for GUIs icelake, x86_64, zen, zen2
quantum-espresso quantum-espresso: Electronic-structure calculations at the nanoscale. zen2 Yes
r r: R statistical computing scripting language icelake, x86_64, zen2
rclone Rclone: command line tool for managing cloud storage zen2
rdma-core RDMA-Core: RDMA Core userspace libraries and drivers zen2
rocky Rocky: ANSYS Rocky DEM x86_64
rust rust: Rust programming language icelake, x86_64, zen, zen2
samtools samtools: SAM (Sequence/Alignment Mapping) Tools icelake, x86_64, zen, zen2
scalapack scalapack: Scalable linear algebra package icelake, x86_64, zen, zen2 Yes
scons SCons: SCons open-source software construction tool icelake, x86_64, zen2
scorep scorep: suite for profiling, event tracing, and analysis of HPC applications zen2 Yes
scotch scotch: Package for graph and mesh partitioning, graph clustering, and sparse matrix ordering icelake, x86_64, zen, zen2 Yes
shapeit4 SHAPEIT4: estimation of haplotypes for sequencing data. icelake, x86_64, zen2 Yes
silo silo: libraries for reading/writing a variety of scientific data icelake, x86_64, zen, zen2 Yes
singularity singularity: Singularity container utilities x86_64
sirius SIRIUS: domain specific library for electronic structure calculations zen
slepc SLEPc: Scalable Library for Eigenvalue Problem Computations zen2
smokeview Smokeview: Visualization tool for FDS and CFAST output x86_64
snpeff SnpEff: Genomic variant annotation and functional effect prediction icelake, x86_64, zen2
sox sox: Sound eXchange, the Swiss Army knife of sound processing icelake, x86_64, zen2
spfft SpFFT: 3D FFT library for sparse frequency domain data icelake, x86_64, zen, zen2
spglib spglib: C library for finding and handling crystal symmetries icelake, x86_64, zen, zen2
sqlite sqlite: Library for lossy compression of multidimensional arrays icelake, x86_64, zen, zen2
stacks stacks: pipeline for building loci from short-read sequences zen2
star-ccm star-ccm: CFD based simulation software from Siemens x86_64
suite-sparse suite-sparse: Suite of Sparse Matrix algorithms icelake, x86_64, zen, zen2
superlu superlu: Sparse Linear system solver (sequential) icelake, x86_64, zen, zen2
superlu-dist superlu-dist: Sparse Linear system solver (distributed mem/MPI) icelake, x86_64, zen, zen2
superlu-mt superlu-mt: Sparse Linear system solver (multithreaded) icelake, x86_64, zen, zen2
swig swig: compiler to interface C/C++ libraries to Perl, Python, etc icelake, x86_64, zen, zen2
sz sz: Error-bounded Lossy Compressor for HPC Data icelake, x86_64, zen, zen2 Yes
tecplot360 Tecplot360: CFD visualization software x86_64
tensorflow tensorflow: Open-source software library for machine intelligence icelake, zen, zen2 Yes
toolchain/aocc aocc: AOCC Compiler Toolchains x86_64
toolchain/gcc gcc: GNU Compiler Toolchains x86_64
toolchain/intel intel: Intel Classic Compiler Toolchains x86_64
tophat tophat: Spliced read mapper for RNA-Seq x86_64
trilinos Trilinos: Solvers collection including linear, non-linear, optimization, and transient solvers zen2
udunits udunits: The UDUNITS package supports units of physical quantities. icelake, x86_64, zen, zen2
ufs-weather-model ufs-weather-model: Unified Forecast System Weather Model zen2 Yes
umd-examples/hello-umd hello-umd: Simple Hello world binary icelake, x86_64, zen, zen2 Yes
us3d us3d: Aeordynamic and Aerothermodynamic Simulations Software skylake_avx512
usearch USEARCH: Ultra-fast sequence analysis tool x86_64
vasp vasp: VASP: Vienna Ab-initio Simulation Package zen2
vcftools VCFtools: VCFtools is a set of utilities for working with VCF files zen2
virtualgl virtualgl: Toolkit to allow remote display to run OpenGL applications with full hardware acceleration icelake, x86_64, zen, zen2
visit visit: interactive, scalable, visualization, animation and analysis tool zen2 Yes
vmd VMD: Visual Molecular Dynamics x86_64
voropp Voro++: library for 3D computations of the Voronoi tessellation icelake, x86_64, zen, zen2
vtk vtk: 3D computer graphics, image processing and visualization library icelake, zen, zen2 Yes
wannier90 Wannier90: tool to calculate maximally-localized Wannier functions icelake, x86_64, zen, zen2 Yes
xerces-c xerces-c: validating XML parser in C++ icelake, x86_64, zen, zen2
xssp xssp: Secondary structure assignments for entries in the Protein Data Bank zen
xz xz: Lossless compression utility and library icelake, x86_64, zen, zen2
zfp zfp: Library for lossy compression of multidimensional arrays icelake, x86_64, zen, zen2
zlib zlib: General purpose, patent-free compression ibrary icelake, x86_64, zen, zen2
zoltan zoltan: Toolkit for parallel combinatorial algorithms icelake, x86_64, zen, zen2 Yes
zstd zstd: Fast, lossless compression algorithm icelake, x86_64, zen, zen2

Packages installed for scripting languages

The Division of Information Technology maintains several versions of several scripting languages on the clusters. These scripting languages can be enhanced by the addition of packages/modules/etc, and the Division of IT maintains a collection of packages for these. In most cases, the packages/modules are fairly lightweight, and we simply install them into the standard system directory location for the particular scripting language, upgrading them as needed. This means that they will just be found when you import/use/etc them; no additional work is needed on your part.

For a few cases, they are major packages in their own right, and we give them their own module. Those packages are included in the lists of software earlier in this document, and you will need to "module load" the appropriate package in order to use them.

This section is for the packages of the first type, and for the convenience of our users we provide a list of the packages/modules available for each install of a scripting language, by cluster and version. Note: that these lists do not include the standard library for the scripting language, i.e. those packages/modules that get included automatically in the installation of the scripting language, only those that need to be installed separately.

WARNING
These sections are still under development. We hope to have it more accurate in the near future.
  1. Modules/packages for Python
  2. Modules/packages for R
  3. Modules/packages for Perl

Packages/modules for Python

The following table lists the various packages/modules/extensions for Python along with their version which are installed on the UMD HPC clusters, by cluster, Python version, and platform. These are the packages/modules/extensions which are enabled by default when you do the "module load python".
Python packages/modules/extensions enabled by default
Python Version3.10.103.10.103.10.103.10.103.10.103.10.103.8.123.8.12
Compilergcc/11.3.0gcc/11.3.0gcc/11.3.0gcc/11.3.0gcc/11.3.0gcc/11.3.0gcc/9.4.0gcc/9.4.0
CPU optimized forzen2icelakex86_64zen2icelakex86_64zen2zen2
CUDAnocudanocudanocudacuda/12.3.0cuda/12.3.0cuda/12.3.0nocudacuda/11.6.2
absl-py  1.4.0  1.4.00.13.00.13.0
aiohttp3.8.13.8.13.8.13.8.13.8.13.8.13.8.13.8.1
aiohttp-cors0.7.00.7.00.7.00.7.00.7.00.7.00.7.00.7.0
aiosignal1.2.01.2.01.2.01.2.01.2.01.2.01.2.01.2.0
alabaster0.7.130.7.130.7.130.7.130.7.130.7.13  
appdirs1.4.41.4.41.4.41.4.41.4.41.4.41.4.41.4.4
archspec0.2.20.2.20.2.20.2.20.2.20.2.2  
argon2-cffi21.3.021.3.021.3.021.3.021.3.021.3.021.3.021.3.0
argon2-cffi-bindings21.2.021.2.021.2.021.2.021.2.021.2.021.2.021.2.0
asdf2.15.02.15.02.15.02.15.02.15.02.15.02.4.22.4.2
asdf-standard1.0.31.0.31.0.31.0.31.0.31.0.3  
asdf-transform-schemas0.3.00.3.00.3.00.3.00.3.00.3.0  
asdf-unit-schemas0.1.00.1.00.1.00.1.00.1.00.1.0  
astropy5.1  5.1  4.0.1.post14.0.1.post1
asttokens2.2.12.2.12.2.12.2.12.2.12.2.1  
astunparse  1.6.31.6.31.6.31.6.3  
async-timeout4.0.24.0.24.0.24.0.24.0.24.0.24.0.24.0.2
attrs23.1.023.1.023.1.023.1.023.1.023.1.021.4.021.4.0
audioread2.1.82.1.82.1.82.1.82.1.82.1.82.1.82.1.8
Automat20.2.020.2.020.2.020.2.020.2.020.2.020.2.020.2.0
azure-common1.1.251.1.251.1.251.1.251.1.251.1.251.1.251.1.25
azure-core1.26.11.26.11.26.11.26.11.26.11.26.11.21.11.21.1
azure-storage-blob12.9.012.9.012.9.012.9.012.9.012.9.012.9.012.9.0
Babel2.12.12.12.12.12.12.12.12.12.12.12.12.9.12.9.1
backcall0.2.00.2.00.2.00.2.00.2.00.2.00.2.00.2.0
backports.entry-points-selectable1.1.11.1.11.1.11.1.11.1.11.1.1  
beautifulsoup44.12.24.12.24.12.24.12.24.12.24.12.24.10.04.10.0
beniget0.4.10.4.10.4.10.4.10.4.10.4.1  
bintrees2.0.72.0.72.0.72.0.72.0.72.0.72.0.72.0.7
biopython1.811.811.811.811.811.811.781.78
bleach6.0.06.0.06.0.06.0.06.0.06.0.04.1.04.1.0
blessed1.19.01.19.01.19.01.19.01.19.01.19.01.19.01.19.0
blinker1.41.41.41.41.41.41.41.4
boto31.26.261.26.261.26.261.26.261.26.261.26.261.18.121.18.12
botocore1.29.841.29.841.29.841.29.841.29.841.29.841.21.121.21.12
Bottleneck1.3.71.3.71.3.71.3.71.3.71.3.71.3.21.3.2
Brotli1.1.01.1.01.1.01.1.01.1.01.1.0  
brotlipy0.7.00.7.00.7.00.7.00.7.00.7.0  
build0.10.00.10.00.10.00.10.00.10.00.10.0  
cachetools5.2.05.2.05.2.05.2.05.2.05.2.04.2.44.2.4
calver2022.6.262022.6.262022.6.262022.6.262022.6.262022.6.26  
Cartopy0.22.0  0.22.0    
certifi2023.5.72023.5.72023.5.72023.5.72023.5.72023.5.72021.10.82021.10.8
cffi1.15.11.15.11.15.11.15.11.15.11.15.11.15.01.15.0
cftime1.0.3.41.0.3.41.0.3.41.0.3.41.0.3.41.0.3.41.0.3.41.0.3.4
chardet5.1.05.1.05.1.05.1.05.1.05.1.0  
charset-normalizer2.0.122.0.122.0.122.0.122.0.122.0.122.0.122.0.12
click8.1.38.1.38.1.38.1.38.1.38.1.38.0.38.0.3
cloudpickle2.2.02.2.02.2.02.2.02.2.02.2.01.6.01.6.0
cmyt1.1.21.1.21.1.21.1.21.1.21.1.21.1.21.1.2
colorama0.4.60.4.60.4.60.4.60.4.60.4.60.4.40.4.4
colorful0.5.40.5.40.5.40.5.40.5.40.5.40.5.40.5.4
colorspacious1.1.21.1.21.1.21.1.21.1.21.1.21.1.21.1.2
comm0.1.30.1.30.1.30.1.30.1.30.1.3  
constantly15.1.015.1.015.1.015.1.015.1.015.1.015.1.015.1.0
contourpy1.0.7 1.0.71.0.71.0.71.0.71.0.51.0.5
cppy1.2.11.2.11.2.11.2.11.2.11.2.1  
cryptography37.0.440.0.240.0.237.0.437.0.440.0.235.0.035.0.0
cssselect1.1.01.1.01.1.01.1.01.1.01.1.01.1.01.1.0
cutadapt4.44.44.44.44.44.42.102.10
cycler0.11.00.11.00.11.00.11.00.11.00.11.00.11.00.11.0
Cython0.29.360.29.360.29.360.29.360.29.360.29.360.29.240.29.24
dask2022.10.22022.10.22022.10.22022.10.22022.10.22022.10.22021.6.22021.6.2
dateutils0.6.120.6.120.6.120.6.120.6.120.6.12  
debugpy1.6.71.6.71.6.71.6.71.6.71.6.71.5.11.5.1
decorator5.1.15.1.15.1.15.1.15.1.15.1.15.1.15.1.1
defusedxml0.7.10.7.10.7.10.7.10.7.10.7.10.7.10.7.1
deprecation2.1.02.1.02.1.02.1.02.1.02.1.0  
dipy1.7.0  1.7.0    
distlib0.3.60.3.60.3.60.3.60.3.60.3.6  
distributed2022.10.22022.10.22022.10.22022.10.22022.10.22022.10.22021.6.22021.6.2
dmri-amico1.2.8  1.2.8    
dmri-commit1.4.4  1.4.4    
dnaio0.10.00.10.00.10.00.10.00.10.00.10.00.4.20.4.2
docutils0.190.190.190.190.190.190.180.18
ecos2.0.122.0.122.0.122.0.122.0.122.0.12  
editables0.30.30.30.30.30.3  
entrypoints0.40.40.40.40.40.40.40.4
envmodules0.10.10.10.10.10.10.10.1
exceptiongroup1.1.11.1.11.1.11.1.11.1.11.1.1  
executing1.1.01.1.01.1.01.1.01.1.01.1.0  
fasteners0.180.180.180.180.180.180.17.30.17.3
fastjsonschema2.16.32.16.32.16.32.16.32.16.32.16.32.15.12.15.1
fastrlock0.8.10.8.10.8.10.8.10.8.10.8.10.50.5
filelock3.12.03.12.03.12.03.12.03.12.03.12.03.5.03.5.0
flake86.0.06.0.06.0.06.0.06.0.06.0.04.0.14.0.1
flatbuffers23.5.2623.5.2623.5.2623.5.2623.5.2623.5.262022120720574520221207205745
flit3.7.13.7.13.7.13.7.13.7.13.7.1  
flit_core3.7.13.7.13.7.13.7.13.7.13.7.1  
fonttools4.37.34.37.34.37.34.37.34.37.34.37.3  
frozenlist1.3.11.3.11.3.11.3.11.3.11.3.11.3.01.3.0
fsspec2023.1.02023.1.02023.1.02023.1.02023.1.02023.1.02021.7.02021.7.0
future0.18.20.18.20.18.20.18.20.18.20.18.20.18.20.18.2
gast0.5.30.5.30.5.30.5.30.5.30.5.30.4.00.4.0
GDAL3.7.0  3.7.0    
gensim4.3.14.3.14.3.14.3.14.3.14.3.1  
gevent1.5.01.5.01.5.01.5.01.5.01.5.01.5.01.5.0
gmpy2      2.1.22.1.2
google3.0.03.0.03.0.03.0.03.0.03.0.0  
google-api-core1.14.21.14.21.14.21.14.21.14.21.14.21.14.21.14.2
google-auth1.6.31.6.32.20.01.6.31.6.32.20.01.6.31.6.3
google-auth-oauthlib0.5.20.5.20.5.20.5.20.5.20.5.20.4.60.4.6
google-cloud-core1.0.31.0.31.0.31.0.31.0.31.0.3  
google-cloud-storage1.18.01.18.01.18.01.18.01.18.01.18.0  
google-crc32c1.3.01.3.01.3.01.3.01.3.01.3.0  
google-pasta  0.2.0  0.2.0  
google-resumable-media2.4.12.4.12.4.12.4.12.4.12.4.1  
googleapis-common-protos1.58.01.58.01.58.01.58.01.58.01.58.01.55.01.55.0
gpustat      1.0.0b11.0.0b1
graphviz0.13.20.13.20.13.20.13.20.13.20.13.20.13.20.13.2
greenlet2.0.22.0.22.0.22.0.22.0.22.0.21.1.21.1.2
GridDataFormats1.0.11.0.11.0.11.0.11.0.11.0.10.5.00.5.0
grpcio1.52.01.52.01.52.01.52.01.52.01.52.01.32.01.32.0
gsd2.8.02.8.02.8.02.8.02.8.02.8.01.9.31.9.3
h5py3.8.0  3.8.0  3.6.03.6.0
hatchling1.14.01.14.01.14.01.14.01.14.01.14.0  
HeapDict1.0.11.0.11.0.11.0.11.0.11.0.11.0.11.0.1
html5lib1.11.11.11.11.11.11.11.1
hyperlink21.0.021.0.021.0.021.0.021.0.021.0.021.0.021.0.0
idna3.43.43.43.43.43.43.33.3
imageio2.30.02.30.02.30.02.30.02.30.02.30.02.10.32.10.3
imagesize1.4.11.4.11.4.11.4.11.4.11.4.1  
importlib-metadata6.6.06.6.06.6.06.6.06.6.06.6.04.11.14.11.1
importlib-resources5.12.05.12.05.12.05.12.05.12.05.12.05.3.05.3.0
incremental21.3.021.3.021.3.021.3.021.3.021.3.021.3.021.3.0
iniconfig2.0.02.0.02.0.02.0.02.0.02.0.00.0.00.0.0
ipykernel6.22.06.22.06.22.06.22.06.22.06.22.06.4.16.4.1
ipython8.11.08.11.08.11.08.11.08.11.08.11.07.23.17.23.1
ipython-genutils0.2.00.2.00.2.00.2.00.2.00.2.00.2.00.2.0
ipywidgets8.0.28.0.28.0.28.0.28.0.28.0.27.7.07.7.0
isal1.1.01.1.01.1.01.1.01.1.01.1.0  
isodate0.6.10.6.10.6.10.6.10.6.10.6.10.6.10.6.1
jax      0.2.250.2.25
jaxlib   0.4.3  0.1.740.1.74
jedi0.18.10.18.10.18.10.18.10.18.10.18.10.18.10.18.1
Jinja23.1.23.1.23.1.23.1.23.1.23.1.23.0.33.0.3
jmespath1.0.11.0.11.0.11.0.11.0.11.0.10.10.00.10.0
joblib1.2.01.2.01.2.01.2.01.2.01.2.01.1.01.1.0
jplephem2.92.92.92.92.92.92.92.9
jsonschema4.17.34.17.34.17.34.17.34.17.34.17.34.4.04.4.0
jupyter1.0.01.0.01.0.01.0.01.0.01.0.0  
jupyter-client7.1.27.1.27.1.27.1.27.1.27.1.27.0.67.0.6
jupyter-console6.4.46.4.46.4.46.4.46.4.46.4.4  
jupyter-contrib-core      0.4.20.4.2
jupyter-contrib-nbextensions      0.7.00.7.0
jupyter-core      4.7.14.7.1
jupyter-highlight-selected-word      0.2.00.2.0
jupyter-nbextensions-configurator      0.6.10.6.1
jupyter_core5.3.05.3.05.3.05.3.05.3.05.3.0  
jupyterlab-pygments0.2.20.2.20.2.20.2.20.2.20.2.20.1.20.1.2
jupyterlab-widgets3.0.33.0.33.0.33.0.33.0.33.0.31.1.01.1.0
Keras-Preprocessing1.1.21.1.21.1.21.1.21.1.21.1.2  
kiwisolver1.4.41.4.41.4.41.4.41.4.41.4.41.3.21.3.2
kwant      1.4.21.4.2
labmath      2.2.02.2.0
librosa      0.9.10.9.1
lightning-utilities   0.8.00.8.0   
llvmlite      0.37.00.37.0
locket1.0.01.0.01.0.01.0.01.0.01.0.00.2.00.2.0
lxml4.9.14.9.14.9.14.9.14.9.14.9.14.8.04.8.0
lz44.0.24.0.24.0.24.0.24.0.24.0.2  
m2r0.2.10.2.10.2.10.2.10.2.10.2.10.2.10.2.1
Mako1.2.21.2.21.2.21.2.21.2.21.2.21.1.61.1.6
Markdown3.4.13.4.13.4.13.4.13.4.13.4.13.3.43.3.4
MarkupSafe2.1.12.1.12.1.12.1.12.1.12.1.12.0.12.0.1
matlabengine      9.13.79.13.7
matplotlib3.8.2 3.8.23.8.23.8.23.8.23.4.33.4.3
matplotlib-inline0.1.60.1.60.1.60.1.60.1.60.1.60.1.30.1.3
mccabe0.7.00.7.00.7.00.7.00.7.00.7.00.6.10.6.1
MDAnalysis2.6.1 2.6.12.6.1 2.6.12.2.02.2.0
MDAnalysisTests      2.2.02.2.0
mercurial6.4.56.4.56.4.56.4.56.4.56.4.5  
meson1.1.01.1.01.1.01.1.01.1.01.1.0  
meson-python0.12.00.12.00.12.00.12.00.12.00.12.0  
mistune0.8.40.8.40.8.40.8.40.8.40.8.40.8.40.8.4
mmtf-python1.1.2 1.1.21.1.2 1.1.21.1.21.1.2
mock4.0.34.0.34.0.34.0.34.0.34.0.34.0.34.0.3
modred2.0.4.post62.0.4.post62.0.4.post62.0.4.post62.0.4.post62.0.4.post6  
more-itertools9.1.09.1.09.1.09.1.09.1.09.1.08.12.08.12.0
mpi4py3.1.4 3.1.43.1.43.1.43.1.43.1.23.1.2
mpmath1.2.11.2.11.2.11.2.11.2.11.2.11.2.11.2.1
mrcfile1.3.01.3.01.3.01.3.01.3.01.3.0  
msgpack1.0.41.0.41.0.41.0.41.0.41.0.41.0.21.0.2
msrest0.6.210.6.210.6.210.6.210.6.210.6.210.6.210.6.21
multidict6.0.26.0.26.0.26.0.26.0.26.0.26.0.26.0.2
nbclient0.7.20.7.20.7.20.7.20.7.20.7.20.5.50.5.5
nbconvert6.5.16.5.16.5.16.5.16.5.16.5.16.5.06.5.0
nbformat5.8.05.8.05.8.05.8.05.8.05.8.05.4.05.4.0
nest-asyncio1.5.61.5.61.5.61.5.61.5.61.5.61.5.41.5.4
netCDF4      1.5.31.5.3
networkx2.8.62.8.62.8.62.8.62.8.62.8.62.7.12.7.1
nibabel4.0.24.0.24.0.24.0.24.0.24.0.23.2.13.2.1
nltk3.8.13.8.13.8.13.8.13.8.13.8.1  
notebook6.4.126.4.126.4.126.4.126.4.126.4.126.4.116.4.11
numba      0.54.00.54.0
numexpr2.8.32.8.32.8.32.8.32.8.32.8.32.8.32.8.3
numpy1.26.21.26.21.26.21.26.21.26.21.26.21.19.51.19.5
nvidia-ml-py3      7.352.07.352.0
oauthlib3.1.03.1.03.1.03.1.03.1.03.1.03.1.13.1.1
opencensus0.7.100.7.100.7.100.7.100.7.100.7.10  
opencensus-context0.1.10.1.10.1.10.1.10.1.10.1.10.1.10.1.1
OpenMM   7.7.07.7.0   
opt-einsum3.3.03.3.03.3.03.3.03.3.03.3.03.3.03.3.0
optax      0.1.40.1.4
OWSLib0.25.0  0.25.0    
packaging23.023.023.023.023.023.021.021.0
pandas1.5.31.5.31.5.31.5.31.5.31.5.31.3.41.3.4
pandocfilters1.5.01.5.01.5.01.5.01.5.01.5.01.5.01.5.0
parso0.8.30.8.30.8.30.8.30.8.30.8.30.8.20.8.2
partd1.4.01.4.01.4.01.4.01.4.01.4.01.1.01.1.0
pathspec0.11.10.11.10.11.10.11.10.11.10.11.1  
patsy0.5.20.5.20.5.20.5.20.5.20.5.20.5.10.5.1
pep5170.12.00.12.00.12.00.12.00.12.00.12.0  
petsc4py      3.16.63.16.6
pexpect4.8.04.8.04.8.04.8.04.8.04.8.04.8.04.8.0
physics-tenpy1.0.1  1.0.1    
pickleshare0.7.50.7.50.7.50.7.50.7.50.7.50.7.50.7.5
Pillow9.5.09.5.09.5.09.5.09.5.09.5.08.4.08.4.0
pip23.023.023.023.023.023.021.1.121.1.1
pkgconfig1.5.51.5.51.5.51.5.51.5.51.5.5  
platformdirs3.5.03.5.03.5.03.5.03.5.03.5.0  
pluggy1.0.01.0.01.0.01.0.01.0.01.0.01.0.01.0.0
ply3.113.113.113.113.113.11  
poetry-core1.2.01.2.01.2.01.2.01.2.01.2.0  
pooch      1.5.21.5.2
prometheus-client0.14.10.14.10.14.10.14.10.14.10.14.10.12.00.12.0
prompt-toolkit3.0.313.0.313.0.313.0.313.0.313.0.313.0.293.0.29
protobuf4.24.34.24.34.24.33.17.33.17.34.24.33.18.13.18.1
psutil5.9.45.9.45.9.45.9.45.9.45.9.45.8.05.8.0
ptyprocess0.7.00.7.00.7.00.7.00.7.00.7.00.7.00.7.0
pure-eval0.2.20.2.20.2.20.2.20.2.20.2.2  
py1.11.01.11.01.11.01.11.01.11.01.11.01.11.01.11.0
pyaml      21.8.321.8.3
pyarrow10.0.1  10.0.110.0.1   
pyasn10.4.80.4.80.4.80.4.80.4.80.4.80.4.80.4.8
pyasn1-modules0.2.80.2.80.2.80.2.80.2.80.2.80.2.80.2.8
pybind112.10.12.10.12.10.12.10.12.10.12.10.12.6.22.6.2
pycodestyle2.10.02.10.02.10.02.10.02.10.02.10.02.8.02.8.0
pycparser2.212.212.212.212.212.212.202.20
pycuda      2021.12021.1
pyDeprecate      0.3.10.3.1
pydicom2.3.02.3.02.3.02.3.02.3.02.3.0  
pydot1.4.21.4.21.4.21.4.21.4.21.4.2  
pyerfa2.0.0.1  2.0.0.1    
pyFFTW0.12.00.12.00.12.00.12.00.12.00.12.0  
pyflakes3.0.13.0.13.0.13.0.13.0.13.0.12.4.02.4.0
Pygments2.13.02.13.02.13.02.13.02.13.02.13.02.10.02.10.0
pygraphviz1.101.101.101.101.101.10  
PyJWT2.4.02.4.02.4.02.4.02.4.02.4.02.1.02.1.0
PyMUMPS0.3.2 0.3.20.3.2 0.3.20.3.20.3.2
pyOpenSSL19.0.019.0.019.0.019.0.019.0.019.0.0  
pyparsing3.0.93.0.93.0.93.0.93.0.93.0.92.4.72.4.7
pyproj3.6.1  3.6.1    
pyproject-metadata0.7.10.7.10.7.10.7.10.7.10.7.1  
pyproject_hooks1.0.01.0.01.0.01.0.01.0.01.0.0  
PyQt55.15.95.15.95.15.95.15.95.15.95.15.95.13.15.13.1
PyQt5-sip12.12.112.12.112.12.112.12.112.12.112.12.1  
pyrsistent0.19.30.19.30.19.30.19.30.19.30.19.30.18.00.18.0
pyshp2.1.02.1.02.1.02.1.02.1.02.1.0  
PySocks1.7.11.7.11.7.11.7.11.7.11.7.11.7.11.7.1
pytest7.3.2 7.3.27.3.2 7.3.26.2.56.2.5
pytest-runner6.0.06.0.06.0.06.0.06.0.06.0.0  
python-dateutil2.8.22.8.22.8.22.8.22.8.22.8.22.8.22.8.2
pythran0.12.00.12.00.12.00.12.00.12.00.12.0  
pytools      2021.2.92021.2.9
pytorch-lightning   2.0.02.0.0   
pytz2022.2.12022.2.12022.2.12022.2.12022.2.12022.2.12021.32021.3
PyWavelets1.4.11.4.11.4.11.4.11.4.11.4.11.1.11.1.1
PyYAML6.06.06.06.06.06.06.06.0
pyzmq25.0.225.0.225.0.225.0.225.0.225.0.222.3.022.3.0
QScintilla      2.11.62.11.6
qsymm1.2.71.2.71.2.71.2.71.2.71.2.7  
qtconsole5.2.05.2.05.2.05.2.05.2.05.2.05.2.05.2.0
QtPy1.11.21.11.21.11.21.11.21.11.21.11.2  
regex2022.8.172022.8.172022.8.172022.8.172022.8.172022.8.172020.11.132020.11.13
reportlab4.0.44.0.44.0.44.0.44.0.44.0.4  
requests2.28.22.28.22.28.22.28.22.28.22.28.22.26.02.26.0
requests-oauthlib1.3.11.3.11.3.11.3.11.3.11.3.11.3.01.3.0
resampy      0.2.20.2.2
rsa4.94.94.94.94.94.94.7.24.7.2
rst2pdf0.1000.1000.1000.1000.1000.100  
s3transfer0.6.00.6.00.6.00.6.00.6.00.6.00.5.00.5.0
scikit-image      0.18.30.18.3
scikit-learn1.2.21.2.21.2.21.2.21.2.21.2.21.0.11.0.1
SciPy      1.7.11.7.1
scipy1.10.11.10.11.10.11.10.11.10.11.10.1  
seaborn0.12.2 0.12.20.12.2 0.12.20.11.20.11.2
semantic-version2.10.02.10.02.10.02.10.02.10.02.10.02.8.22.8.2
Send2Trash1.8.01.8.01.8.01.8.01.8.01.8.01.8.01.8.0
setproctitle      1.1.101.1.10
setuptools63.4.364.0.063.4.368.0.068.0.063.4.362.3.262.3.2
setuptools-rust1.5.11.5.11.5.11.5.11.5.11.5.10.12.10.12.1
setuptools-scm7.0.57.0.57.0.57.0.57.0.57.0.5  
shapely2.0.2 2.0.22.0.2 2.0.2  
sip6.7.96.7.96.7.96.7.96.7.96.7.9  
six1.16.01.16.01.16.01.16.01.16.01.16.01.16.01.16.0
slepc4py      3.16.33.16.3
smart-open5.2.15.2.15.2.15.2.15.2.15.2.1  
smartypants2.0.12.0.12.0.12.0.12.0.12.0.1  
snowballstemmer2.2.02.2.02.2.02.2.02.2.02.2.02.0.02.0.0
sortedcontainers2.1.02.1.02.1.02.1.02.1.02.1.02.1.02.1.0
soundfile0.11.00.11.00.11.00.11.00.11.00.11.00.11.00.11.0
soupsieve2.3.2.post12.3.2.post12.3.2.post12.3.2.post12.3.2.post12.3.2.post12.2.12.2.1
spams2.6.2.5  2.6.2.5  2.6.2.52.6.2.5
Sphinx7.0.17.0.17.0.17.0.17.0.17.0.1  
sphinxcontrib-applehelp1.0.21.0.21.0.21.0.21.0.21.0.2  
sphinxcontrib-devhelp1.0.21.0.21.0.21.0.21.0.21.0.2  
sphinxcontrib-htmlhelp2.0.02.0.02.0.02.0.02.0.02.0.0  
sphinxcontrib-jsmath1.0.11.0.11.0.11.0.11.0.11.0.1  
sphinxcontrib-programoutput0.150.150.150.150.150.15  
sphinxcontrib-qthelp1.0.31.0.31.0.31.0.31.0.31.0.3  
sphinxcontrib-serializinghtml1.1.51.1.51.1.51.1.51.1.51.1.5  
stack-data0.5.00.5.00.5.00.5.00.5.00.5.0  
statsmodels0.13.20.13.20.13.20.13.20.13.20.13.20.12.20.12.2
sympy1.11.11.11.11.11.11.11.11.11.11.11.11.81.8
tables3.7.03.7.03.7.03.7.03.7.03.7.03.6.13.6.1
tabulate      0.8.90.8.9
tblib1.6.01.6.01.6.01.6.01.6.01.6.01.6.01.6.0
tensorboard      2.7.02.7.0
tensorboard-data-server      0.6.10.6.1
tensorboard-plugin-wit1.8.11.8.11.8.11.8.11.8.11.8.11.8.01.8.0
tensorboardX      2.5.12.5.1
termcolor  1.1.0  1.1.0  
terminado0.12.10.12.10.12.10.12.10.12.10.12.10.12.10.12.1
testpath0.6.00.6.00.6.00.6.00.6.00.6.0  
threadpoolctl3.1.03.1.03.1.03.1.03.1.03.1.03.0.03.0.0
tidynamics1.1.2 1.1.21.1.2 1.1.2  
tifffile      2021.11.22021.11.2
tinyarray1.2.41.2.41.2.41.2.41.2.41.2.41.2.31.2.3
tinycss21.1.11.1.11.1.11.1.11.1.11.1.11.1.11.1.1
tinycudann      1.61.6
toml0.10.20.10.20.10.20.10.20.10.20.10.20.10.20.10.2
tomli2.0.12.0.12.0.12.0.12.0.12.0.11.2.11.2.1
tomli-w      1.0.01.0.0
tomli_w1.0.01.0.01.0.01.0.01.0.01.0.0  
tomlkit0.11.40.11.40.11.40.11.40.11.40.11.4  
toolz0.12.00.12.00.12.00.12.00.12.00.12.00.9.00.9.0
torch   2.0.12.0.1  1.11.0
torchaudio   2.0.2+31de77d2.0.2  0.11.0
torchmetrics   0.11.40.11.4  0.7.0
torchsummary   1.5.11.5.1  1.5.1
torchvision   0.15.20.15.2  0.12.0a0
tornado6.16.16.16.16.16.16.16.1
tqdm4.65.04.65.04.65.04.65.04.65.04.65.04.62.34.62.3
traitlets5.9.05.9.05.9.05.9.05.9.05.9.05.1.15.1.1
trove-classifiers2023.3.92023.3.92023.3.92023.3.92023.3.92023.3.9  
Twisted21.7.021.7.021.7.021.7.021.7.021.7.021.7.021.7.0
typing-extensions      4.1.14.1.1
typing_extensions4.5.04.5.04.5.04.5.04.5.04.5.0  
unyt2.9.2  2.9.2  2.9.22.9.2
urllib31.26.121.26.121.26.121.26.121.26.121.26.121.26.61.26.6
urllib3-secure-extra0.1.00.1.00.1.00.1.00.1.00.1.0  
virtualenv20.22.020.22.020.22.020.22.020.22.020.22.0  
voluptuous      0.11.70.11.7
wcwidth0.2.50.2.50.2.50.2.50.2.50.2.50.2.50.2.5
webencodings0.5.10.5.10.5.10.5.10.5.10.5.10.5.10.5.1
Werkzeug  3.0.0  3.0.02.0.22.0.2
wheel0.37.10.37.10.37.10.37.10.37.10.37.1  
widgetsnbextension4.0.34.0.34.0.34.0.34.0.34.0.33.6.03.6.0
wrapt  1.14.1  1.14.1  
xgboost      1.5.21.5.2
xopen1.6.01.6.01.6.01.6.01.6.01.6.00.8.40.8.4
yapf0.30.0  0.30.0    
yarl1.8.11.8.11.8.11.8.11.8.11.8.11.7.21.7.2
yt4.1.2  4.1.2  4.1.24.1.2
zict3.0.03.0.03.0.03.0.03.0.03.0.01.0.01.0.0
zipp3.8.13.8.13.8.13.8.13.8.13.8.13.6.03.6.0
zope.interface5.4.05.4.05.4.05.4.05.4.05.4.05.4.05.4.0

Packages/modules for R

The following table lists the various packages/modules/extensions for R along with their version which are installed on the UMD HPC clusters, by cluster, R version, and platform. These are the packages/modules/extensions which are enabled by default when you do the "module load r".
R packages/modules/extensions enabled by default
R Version4.3.24.3.24.3.24.1.1
Compilergcc/11.3.0gcc/11.3.0gcc/11.3.0gcc/9.4.0
CPU optimized forzen2icelakex86_64zen2
CUDAnocudanocudanocudanocuda
abind1.4-51.4-51.4-51.4-5
amap0.8-190.8-190.8-190.8-18
animation2.72.72.72.7
annotate1.78.01.78.01.78.01.68.0
AnnotationDbi1.62.01.62.01.62.01.52.0
ape5.7-15.7-15.7-15.4-1
argparse2.2.22.2.22.2.22.0.3
askpass1.11.11.11.1
assertthat0.2.10.2.10.2.10.2.1
backports1.4.11.4.11.4.11.2.1
base4.3.24.3.24.3.24.1.1
base64enc0.1-30.1-30.1-30.1-3
bayesm3.1-53.1-53.1-53.1-4
Bessel0.6-00.6-00.6-00.6-0
BH1.81.0-11.81.0-11.81.0-11.72.0-3
BiasedUrn2.0.92.0.92.0.91.07
Biobase2.60.02.60.02.60.02.50.0
BiocFileCache2.8.02.8.02.8.01.14.0
BiocGenerics0.46.00.46.00.46.00.40.0
BiocIO1.10.01.10.01.10.01.6.0
BiocManager   1.30.18
BiocParallel1.34.01.34.01.34.01.24.1
BiocVersion   3.14.0
biomaRt2.56.02.56.02.56.02.46.2
Biostrings2.68.02.68.02.68.02.58.0
bit4.0.54.0.54.0.54.0.4
bit644.0.54.0.54.0.54.0.5
bitops1.0-71.0-71.0-71.0-6
blob1.2.41.2.41.2.41.2.1
boot1.3-28.11.3-28.11.3-28.11.3-28
brew1.0-81.0-81.0-81.0-7
brio1.1.31.1.31.1.31.1.0
broom1.0.41.0.41.0.40.8.0
bslib0.4.20.4.20.4.20.3.1
cachem1.0.71.0.71.0.71.0.6
callr3.7.33.7.33.7.33.7.0
caTools1.18.21.18.21.18.21.18.2
cellranger1.1.01.1.01.1.01.1.0
checkmate2.1.02.1.02.1.02.0.0
class7.3-217.3-217.3-21 
classInt0.4-90.4-90.4-9 
cli3.6.13.6.13.6.13.0.1
clipr0.8.00.8.00.8.00.7.1
cluster2.1.42.1.42.1.42.1.0
cmdstanr0.5.30.5.30.5.30.5.1
coda0.19-40.19-40.19-40.19-4
codetools0.2-190.2-190.2-190.2-18
colorspace2.1-02.1-02.1-02.0-0
commonmark1.9.01.9.01.9.01.8.0
compiler4.3.24.3.24.3.24.1.1
conflicted1.2.01.2.01.2.0 
covr3.6.23.6.23.6.23.5.1
cowplot1.1.11.1.11.1.11.1.1
cpp110.4.30.4.30.4.30.4.0
crayon1.5.21.5.21.5.21.4.1
credentials1.3.21.3.21.3.21.3.2
crosstalk1.2.01.2.01.2.01.2.0
ctc1.74.01.74.01.74.01.64.0
ctmm1.2.01.2.0 1.0.0
curl5.0.05.0.05.0.04.3.2
data.table1.14.81.14.81.14.81.14.2
datasets4.3.24.3.24.3.24.1.1
DBI1.1.31.1.31.1.31.1.0
dbplyr2.3.22.3.22.3.22.1.1
DelayedArray0.26.00.26.00.26.00.16.1
deldir1.0-61.0-61.0-61.0-6
DEoptimR1.0-121.0-121.0-121.0-11
desc1.4.21.4.21.4.21.2.0
DESeq21.40.01.40.01.40.01.30.0
devtools   2.3.2
diffobj0.3.50.3.50.3.50.3.3
digest0.6.310.6.310.6.310.6.28
distributional0.3.20.3.20.3.20.3.0
doParallel1.0.171.0.171.0.171.0.17
doSNOW1.0.201.0.201.0.201.0.20
dotCall641.0-21.0-21.0-21.0-1
dplyr1.1.21.1.21.1.21.0.7
dqrng0.3.00.3.00.3.00.3.0
DT0.270.270.270.23
dtplyr1.3.11.3.11.3.11.2.1
dynamicTreeCut1.63-11.63-11.63-11.63-1
e10711.7-131.7-131.7-13 
edgeR3.42.03.42.03.42.03.32.1
ellipsis0.3.20.3.20.3.20.3.2
evaluate0.200.200.200.14
expm0.999-70.999-70.999-70.999-6
fansi1.0.41.0.41.0.40.5.0
farver2.1.12.1.12.1.12.1.0
fastcluster1.2.31.2.31.2.31.1.25
fastmap1.1.11.1.11.1.11.1.0
fasttime1.1-01.1-01.1-01.1-0
fields14.114.114.113.3
filelock1.0.21.0.21.0.2 
findpython1.0.81.0.81.0.81.0.7
fitdistrplus1.1-111.1-111.1-111.1-8
fmesher0.1.20.1.2  
FNN1.1.3.21.1.3.21.1.3.21.1.3.1
fontawesome0.5.10.5.10.5.1 
forcats1.0.01.0.01.0.00.5.1
foreach1.5.21.5.21.5.21.5.2
foreign0.8-840.8-840.8-840.8-81
formatR1.141.141.141.7
Formula1.2-51.2-51.2-51.2-4
fs1.6.21.6.21.6.21.5.0
futile.logger1.4.31.4.31.4.31.4.3
futile.options1.0.11.0.11.0.11.0.1
future1.32.01.32.01.32.01.26.1
future.apply1.10.01.10.01.10.01.9.0
gargle1.4.01.4.01.4.0 
genefilter1.82.01.82.01.82.01.72.1
geneLenDataBase1.36.01.36.01.36.0 
geneplotter1.78.01.78.01.78.01.68.0
generics0.1.30.1.30.1.30.1.1
GenomeInfoDb1.36.01.36.01.36.01.26.2
GenomeInfoDbData1.2.101.2.101.2.101.2.1
GenomicAlignments1.36.01.36.01.36.01.30.0
GenomicFeatures1.52.01.52.01.52.0 
GenomicRanges1.52.01.52.01.52.01.42.0
geomorph4.0.54.0.54.0.54.0.3
geosphere1.5-181.5-181.5-181.5-14
gert1.9.21.9.21.9.21.6.0
ggdendro0.1.230.1.230.1.230.1.23
ggplot23.4.23.4.23.4.23.3.5
ggrepel0.9.30.9.30.9.30.9.1
ggridges0.5.40.5.40.5.40.5.3
gh1.4.01.4.01.4.01.3.0
gitcreds0.1.20.1.20.1.20.1.1
Glimma2.10.02.10.02.10.02.0.0
globals0.16.20.16.20.16.20.15.0
glue1.6.21.6.21.6.21.4.2
Gmedian1.2.71.2.71.2.71.2.7
gmp0.7-10.7-10.7-10.6-5
GO.db3.17.03.17.03.17.03.12.1
goftest1.2-31.2-31.2-31.2-3
googledrive2.1.02.1.02.1.0 
googlesheets41.1.01.1.01.1.0 
GOplot1.0.21.0.21.0.21.0.2
goseq1.52.01.52.01.52.0 
gplots3.1.33.1.33.1.33.1.1
graphics4.3.24.3.24.3.24.1.1
grDevices4.3.24.3.24.3.24.1.1
grid4.3.24.3.24.3.24.1.1
gridExtra2.32.32.32.3
gsl2.1-82.1-82.1-82.1-6
gstat   2.0-9
gtable0.3.30.3.30.3.30.3.0
gtools3.9.43.9.43.9.43.9.2.1
haven2.5.22.5.22.5.22.5.0
hdf5r1.3.81.3.81.3.81.3.5
here1.0.11.0.11.0.11.0.1
highr0.100.100.100.9
Hmisc5.0-15.0-15.0-14.4-2
hms1.1.31.1.31.1.31.1.1
htmlTable2.4.12.4.12.4.12.1.0
htmltools0.5.50.5.50.5.50.5.1.1
htmlwidgets1.6.21.6.21.6.21.5.3
httpuv1.6.91.6.91.6.91.6.5
httr1.4.51.4.51.4.51.4.2
httr20.2.20.2.20.2.2 
hwriter1.3.2.11.3.2.11.3.2.11.3.2.1
ica1.0-31.0-31.0-31.0-2
ids1.0.11.0.11.0.1 
igraph1.4.21.4.21.4.21.2.6
impute1.74.01.74.01.74.01.70.0
ini0.3.10.3.10.3.10.3.1
INLA23.09.0923.09.0923.09.09 
interp1.1-41.1-41.1-4 
intervals0.15.30.15.30.15.30.15.2
IRanges2.34.02.34.02.34.02.24.1
IRdisplay1.11.11.11.1
IRkernel1.3.21.3.21.3.21.3
irlba2.3.5.12.3.5.12.3.5.12.3.5
isoband0.2.70.2.70.2.70.2.3
iterators1.0.141.0.141.0.141.0.14
jpeg0.1-100.1-100.1-100.1-8.1
jquerylib0.1.40.1.40.1.40.1.4
jsonlite1.8.41.8.41.8.41.7.2
KEGGREST1.40.01.40.01.40.0 
kernlab0.9-320.9-320.9-320.9-30
KernSmooth2.23-202.23-202.23-202.23-18
knitr1.421.421.421.33
ks1.14.01.14.01.14.01.13.5
labeling0.4.20.4.20.4.20.4.2
lambda.r1.2.41.2.41.2.41.2.4
later1.3.01.3.01.3.01.3.0
lattice0.21-80.21-80.21-80.20-44
latticeExtra0.6-300.6-300.6-300.6-29
lazyeval0.2.20.2.20.2.20.2.2
leiden0.4.30.4.30.4.30.3.9
lifecycle1.0.31.0.31.0.31.0.1
limma3.56.03.56.03.56.03.52.1
listenv0.9.00.9.00.9.00.8.0
lme41.1-331.1-33 1.1-29
lmtest0.9-400.9-400.9-400.9-40
locfit1.5-9.71.5-9.71.5-9.71.5-9.4
lubridate1.9.21.9.21.9.21.8.0
magick2.7.42.7.42.7.42.7.3
magrittr2.0.32.0.32.0.32.0.1
manipulate1.0.11.0.11.0.11.0.1
manipulateWidget0.11.10.11.10.11.10.11.1
maps3.4.13.4.13.4.13.3.0
markdown1.61.61.61.1
MASS7.3-597.3-597.3-597.3-54
Matrix1.5-41.5-41.5-41.3-4
MatrixGenerics1.12.01.12.01.12.01.2.1
matrixStats0.63.00.63.00.63.00.61.0
mclust6.0.06.0.06.0.05.4.10
memoise2.0.12.0.12.0.11.1.0
methods4.3.24.3.24.3.24.1.1
mgcv1.8-421.8-421.8-421.8-38
mime0.120.120.120.11
miniUI0.1.1.10.1.1.10.1.1.10.1.1.1
minqa1.2.51.2.51.2.51.2.4
misc3d0.9-10.9-10.9-10.9-1
mnormt2.1.12.1.12.1.12.0.2
modelr0.1.110.1.110.1.110.1.8
multicool0.1-120.1-120.1-120.1-12
munsell0.5.00.5.00.5.00.5.0
mvtnorm1.1-31.1-31.1-31.1-3
ncdf41.211.211.211.17
nlme3.1-1623.1-1623.1-1623.1-153
nloptr2.0.32.0.3 2.0.3
nnet7.3-187.3-187.3-187.3-14
numDeriv2016.8-1.12016.8-1.12016.8-1.12016.8-1.1
openssl2.0.62.0.62.0.61.4.5
parallel4.3.24.3.24.3.24.1.1
parallelly1.35.01.35.01.35.01.31.1
parsedate1.3.11.3.1  
patchwork1.1.21.1.21.1.21.1.1
pbapply1.7-01.7-01.7-01.5-0
pbdZMQ0.3-90.3-90.3-90.3-7
pbivnorm0.6.00.6.00.6.00.6.0
pbkrtest0.5.20.5.2 0.5.1
pillar1.9.01.9.01.9.01.6.4
pkgbuild1.4.01.4.01.4.01.2.0
pkgconfig2.0.32.0.32.0.32.0.3
pkgload1.3.21.3.21.3.21.1.0
plogr0.2.00.2.00.2.00.2.0
plot3D1.41.41.41.4
plotly4.10.14.10.14.10.14.10.0
plyr1.8.81.8.81.8.81.8.6
png0.1-80.1-80.1-80.1-7
polyclip1.10-41.10-41.10-41.10-0
posterior1.4.11.4.11.4.11.2.1
pracma2.4.22.4.22.4.22.3.8
praise1.0.01.0.01.0.01.0.0
preprocessCore1.62.01.62.01.62.01.58.0
prettyunits1.1.11.1.11.1.11.1.1
processx3.8.13.8.13.8.13.5.2
progress1.2.21.2.21.2.21.2.2
progressr0.13.00.13.00.13.0 
promises1.2.0.11.2.0.11.2.0.11.2.0.1
proxy0.4-270.4-270.4-27 
ps1.7.51.7.51.7.51.5.0
psych2.3.32.3.32.3.32.2.5
purrr1.0.11.0.11.0.10.3.4
quadprog1.5-81.5-81.5-81.5-8
quantmod0.4.220.4.220.4.220.4.20
qvalue2.32.02.32.02.32.02.22.0
R.methodsS31.8.21.8.21.8.21.8.1
R.oo1.25.01.25.01.25.01.24.0
R.utils2.12.22.12.22.12.22.10.1
R62.5.12.5.12.5.12.5.0
ragg1.2.51.2.51.2.5 
randomForest4.7-1.14.7-1.14.7-1.14.6-14
RANN2.6.12.6.12.6.12.6.1
rappdirs0.3.30.3.30.3.30.3.3
raster3.6-203.6-20 3.5-15
rcmdcheck1.4.01.4.01.4.01.4.0
RColorBrewer1.1-31.1-31.1-31.1-2
Rcpp1.0.101.0.101.0.101.0.7
RcppAnnoy0.0.200.0.200.0.200.0.19
RcppArmadillo0.12.2.0.00.12.2.0.00.12.2.0.00.10.1.2.2
RcppEigen0.3.3.9.30.3.3.9.30.3.3.9.30.3.3.9.1
RcppParallel5.1.75.1.75.1.75.0.2
RcppProgress0.4.20.4.20.4.20.4.2
RcppTOML0.2.20.2.20.2.20.1.7
RCurl1.98-1.121.98-1.121.98-1.121.98-1.2
readr2.1.42.1.42.1.42.1.2
readxl1.4.21.4.21.4.21.3.1
rematch1.0.11.0.11.0.11.0.1
rematch22.1.22.1.22.1.22.1.2
remotes   2.4.2
repr1.1.61.1.61.1.61.1.4
reprex2.0.22.0.22.0.22.0.1
reshape21.4.41.4.41.4.41.4.3
restfulr0.0.150.0.150.0.150.0.15
reticulate1.281.281.281.25
rex1.2.11.2.11.2.11.2.1
rgdal   1.5-32
rgl1.1.31.1.31.1.30.104.16
Rhtslib2.0.02.0.02.0.01.99.5
rjags4-144-144-144-13
rjson0.2.210.2.210.2.210.2.21
rlang1.1.01.1.01.1.00.4.12
rmarkdown2.212.212.212.11
Rmpfr0.9-20.9-20.9-20.8-9
Rmpi0.7-10.7-10.7-10.6-9
robustbase0.95-10.95-10.95-10.95-0
ROCR1.0-111.0-111.0-111.0-11
ROTS1.28.01.28.01.28.01.18.0
roxygen27.2.37.2.37.2.37.1.2
rpart4.1.194.1.194.1.194.1-15
rprojroot2.0.32.0.32.0.32.0.2
RRPP1.3.11.3.11.3.11.2.3
Rsamtools2.16.02.16.02.16.02.10.0
rSPDE2.3.32.3.3  
RSpectra0.16-10.16-10.16-10.16-1
RSQLite2.3.12.3.12.3.12.2.2
rstudioapi0.140.140.140.13
rsvd1.0.51.0.51.0.51.0.5
rtracklayer1.60.01.60.01.60.01.54.0
Rtsne0.160.160.160.16
rversions2.1.22.1.22.1.22.1.1
rvest1.0.31.0.31.0.31.0.2
s21.1.21.1.21.1.2 
S4Vectors0.38.00.38.00.38.00.28.1
sass0.4.50.4.50.4.50.4.1
scales1.2.11.2.11.2.11.1.1
scattermore0.80.80.80.8
sctransform0.3.50.3.50.3.50.3.3
selectr0.4-20.4-20.4-20.4-2
sessioninfo1.2.21.2.21.2.21.1.1
Seurat4.3.04.3.04.3.03.2.3
SeuratObject4.1.34.1.34.1.3 
sf1.0-121.0-12  
shape1.4.61.4.61.4.61.4.6
shiny1.7.41.7.41.7.41.5.0
shinyjs2.1.02.1.02.1.02.1.0
sitmo2.0.22.0.22.0.22.0.2
sm2.2-5.7.12.2-5.7.12.2-5.7.12.2-5.6
snow0.4-40.4-40.4-40.4-3
sourcetools0.1.7-10.1.7-10.1.7-10.1.7
sp1.6-01.6-01.6-01.4-7
spacetime1.3-01.3-01.3-01.2-6
spam2.9-12.9-12.9-12.8-0
spatstat3.0-53.0-53.0-51.64-1
spatstat.data3.0-13.0-13.0-12.2-0
spatstat.explore3.1-03.1-03.1-0 
spatstat.geom3.1-03.1-03.1-0 
spatstat.linnet3.1-03.1-03.1-0 
spatstat.model3.2-33.2-33.2-3 
spatstat.random3.1-43.1-43.1-4 
spatstat.sparse3.0-13.0-13.0-1 
spatstat.utils3.0-23.0-23.0-22.3-1
splines4.3.24.3.24.3.24.1.1
SQUAREM2021.12021.12021.12021.1
statmod1.5.01.5.01.5.01.4.36
stats4.3.24.3.24.3.24.1.1
stats44.3.24.3.24.3.24.1.1
stringi1.7.121.7.121.7.121.6.2
stringr1.5.01.5.01.5.01.4.0
SummarizedExperiment1.30.01.30.01.30.01.20.0
survival3.5-53.5-53.5-53.2-7
sys3.4.13.4.13.4.13.4
systemfonts1.0.41.0.41.0.4 
tcltk4.3.24.3.24.3.24.1.1
tensor1.51.51.51.5
tensorA0.36.20.36.20.36.20.36.2
terra1.7-291.7-29 1.5-21
testthat3.1.73.1.73.1.73.0.1
textshaping0.3.60.3.60.3.6 
tibble3.2.13.2.13.2.13.1.5
tidyr1.3.01.3.01.3.01.1.4
tidyselect1.2.01.2.01.2.01.1.1
tidyverse2.0.02.0.02.0.01.3.0
timechange0.2.00.2.00.2.0 
tinytex0.450.450.450.39
tmvnsim1.0-21.0-21.0-21.0-2
tools4.3.24.3.24.3.24.1.1
tseries0.10-530.10-530.10-530.10-48
TTR0.24.30.24.30.24.30.24.3
tximport1.28.01.28.01.28.01.24.0
tximportData1.28.01.28.01.28.01.24.0
tzdb0.3.00.3.00.3.00.2.0
units0.8-10.8-10.8-1 
usethis2.1.62.1.62.1.62.0.0
utf81.2.31.2.31.2.31.1.4
utils4.3.24.3.24.3.24.1.1
uuid1.1-01.1-01.1-01.1-0
uwot0.1.140.1.140.1.140.1.11
vctrs0.6.20.6.20.6.20.3.8
viridis0.6.20.6.20.6.20.5.1
viridisLite0.4.10.4.10.4.10.3.0
vroom1.6.11.6.11.6.11.5.7
waldo0.4.00.4.00.4.00.2.3
webshot0.5.40.5.40.5.40.5.3
WGCNA1.72-11.72-11.72-11.69
whisker0.4.10.4.10.4.10.4
withr2.5.02.5.02.5.02.4.2
wk0.7.20.7.20.7.2 
xfun0.390.390.390.31
xgboost1.7.5.11.7.5.11.7.5.11.3.2.1
XML3.99-0.143.99-0.143.99-0.143.99-0.5
xml21.3.31.3.31.3.31.3.2
xopen1.0.01.0.01.0.01.0.0
xtable1.8-41.8-41.8-41.8-4
xts0.13.10.13.10.13.10.12.1
XVector0.40.00.40.00.40.00.30.0
yaml2.3.72.3.72.3.72.2.1
zip2.3.02.3.02.3.02.2.0
zlibbioc1.46.01.46.01.46.01.36.0
zoo1.8-121.8-121.8-121.8-10

Packages/modules for Perl

The following table lists the various packages/modules/extensions for Perl along with their version which are installed on the UMD HPC clusters, by cluster, Perl version, and platform. These are the packages/modules/extensions which are enabled by default when you do the "module load perl".
Perl packages/modules/extensions enabled by default
Perl Version
Compiler
CPU optimized for
CUDA



















Back to Top